mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
don't try to create a version on pull requests
The necessary keys to do so aren't available (and of course we don't try to post a release on pull requests, anyway). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
57b355b314
commit
0edb1c71d8
3 changed files with 3 additions and 0 deletions
1
.github/workflows/android.yml
vendored
1
.github/workflows/android.yml
vendored
|
@ -58,6 +58,7 @@ jobs:
|
|||
|
||||
- name: create version number
|
||||
id: version_number
|
||||
if: github.event_name == 'push'
|
||||
run: |
|
||||
latest=$(cat ../nightly-builds/latest-subsurface-buildnumber)
|
||||
today=$(date '+%Y-%m-%d')
|
||||
|
|
1
.github/workflows/mac.yml
vendored
1
.github/workflows/mac.yml
vendored
|
@ -56,6 +56,7 @@ jobs:
|
|||
|
||||
- name: create version number
|
||||
id: version_number
|
||||
if: github.event_name == 'push'
|
||||
run: |
|
||||
latest=$(cat ../nightly-builds/latest-subsurface-buildnumber)
|
||||
today=$(date '+%Y-%m-%d')
|
||||
|
|
1
.github/workflows/windows.yml
vendored
1
.github/workflows/windows.yml
vendored
|
@ -50,6 +50,7 @@ jobs:
|
|||
|
||||
- name: create version number
|
||||
id: version_number
|
||||
if: github.event_name == 'push'
|
||||
run: |
|
||||
latest=$(cat ../nightly-builds/latest-subsurface-buildnumber)
|
||||
today=$(date '+%Y-%m-%d')
|
||||
|
|
Loading…
Reference in a new issue