Skip to content

Commit 469af5a

Browse files
authored
Add GitHub release creation step in workflow
1 parent 574ae27 commit 469af5a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ jobs:
4040
git tag $VERSION
4141
git push --tags origin release-version-${VERSION}
4242
43+
- name: Create Release
44+
run: |
45+
gh release create ${VERSION} --title "Release ${VERSION}" --generate-notes
46+
env:
47+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48+
4349
- name: Install qemu dependency for multi-arch build
4450
run: |
4551
sudo apt-get update

0 commit comments

Comments
 (0)