Skip to content

Commit d726987

Browse files
committed
Fix releasing with creating GitHub release in workflow
1 parent 28d5835 commit d726987

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
- name: Install qgis-plugin-ci
3131
run: pip install qgis-plugin-ci
3232

33+
- name: Create GitHub Release
34+
run: gh release create ${{ github.ref_name }} --title "${{ github.ref_name }}" --notes "Automated release"
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
3338
- name: Package and release
3439
env:
3540
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)