diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 000000000..79a428e8e --- /dev/null +++ b/.github/workflows/create-release.yml @@ -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." \ No newline at end of file