version update #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to Crates | |
on: | |
push: | |
tags: | |
- "*.*.*" | |
jobs: | |
update_and_publish: | |
name: Update Cargo.toml Version and Publish to Crates | |
runs-on: ubuntu-latest | |
environment: crates | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Pull changes | |
run: git pull origin main | |
- name: Set up Rust | |
uses: moonrepo/setup-rust@v1 | |
- name: Format Code | |
run: cargo fmt --all | |
- name: Lint Code | |
run: cargo clippy --all -- -D warnings | |
- name: Update Cargo.toml Version | |
run: | | |
VERSION=$(echo "${GITHUB_REF#refs/tags/}") | |
sed -i'' -e "s/^version = \".*\"/version = \"$VERSION\"/" Cargo.toml | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
if ! git diff --quiet; then | |
git commit -am "Bump version to $VERSION" | |
else | |
echo "No changes to commit" | |
fi | |
- name: Pull changes | |
run: git pull origin main | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Cargo and Publish | |
run: cargo publish --token ${CRATES_TOKEN} | |
env: | |
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} |