Skip to content

Commit

Permalink
Create rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jwdeveloper authored Jan 4, 2024
1 parent 88a5c9c commit 0cdebaa
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Publish New Version

on:
workflow_dispatch:



env:
CARGO_TERM_COLOR: always

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Ensures history is available for tags

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Bump version and create tag
if: github.ref == 'refs/heads/main'
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
cargo install cargo-bump
VERSION=$(cargo bump patch) # You can also use 'minor' or 'major'
git commit -am "Bump version to $VERSION"
git tag $VERSION
git push && git push --tags

0 comments on commit 0cdebaa

Please sign in to comment.