We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a8a128 commit 3db9c2cCopy full SHA for 3db9c2c
1 file changed
.github/workflows/release.yml
@@ -2,6 +2,8 @@ name: Release
2
3
on:
4
push:
5
+ branches:
6
+ - master
7
tags:
8
- '*.*.*'
9
@@ -31,7 +33,7 @@ jobs:
31
33
make build-db
32
34
nohup make serve &
35
sleep 3
- - name: Release
36
+ - name: Release tag
37
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8
38
if: startsWith(github.ref, 'refs/tags/')
39
with:
@@ -41,3 +43,14 @@ jobs:
41
43
pokeapi.pgdump
42
44
db.sqlite3
45
generate_release_notes: true
46
+ - name: Release master
47
+ uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8
48
+ if: github.ref == 'refs/heads/master'
49
+ with:
50
+ draft: true
51
+ name: 'master'
52
+ fail_on_unmatched_files: true
53
+ files: |
54
+ pokeapi.pgdump
55
+ db.sqlite3
56
+ generate_release_notes: false
0 commit comments