Skip to content

Commit

Permalink
Merge pull request #25 from pelotech/automate-release-process
Browse files Browse the repository at this point in the history
Automate nidhogg Github release process
  • Loading branch information
scoquelin authored Aug 13, 2024
2 parents f7aea69 + 0ae4ee2 commit 138366a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release-notes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: release-notes

on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}

- name: Create Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
draft: false
makeLatest: true
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}

0 comments on commit 138366a

Please sign in to comment.