Skip to content

Commit

Permalink
release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
clemiller committed Apr 23, 2024
1 parent 8936221 commit 3f33712
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Create Release

on:
push:
tags:
- '*'

jobs:
create_github_release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1
with:
makeLatest: true
name: "attack-navigator ${{github.ref_name}}"
body: "See [the changelog](./CHANGELOG.md) for details about what changed in this release."

0 comments on commit 3f33712

Please sign in to comment.