Skip to content

Commit

Permalink
CI: Add release job (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
jopohl authored Oct 31, 2024
1 parent e0b20c3 commit 0878364
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,16 @@ jobs:

- name: Check fmt
run: cargo fmt --all -- --check

release:
runs-on: ubuntu-latest
needs: [ build ]
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write

steps:
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true

0 comments on commit 0878364

Please sign in to comment.