replace - with _ in actions env variable names

not sure if this was what's breaking the workflow
pull/1118/head
jemand771 2021-08-22 00:33:40 +02:00
parent 0086580f7a
commit 8ab7896596
No known key found for this signature in database
GPG Key ID: 02E60AE5D9208602
1 changed files with 4 additions and 4 deletions

View File

@ -8,14 +8,14 @@ on:
- "**.md"
env:
is-stable: |
is_stable: |
github.event_name == 'push'
&& github.ref == 'refs/heads/stable'
is-unstable: |
is_unstable: |
github.event_name == 'push'
&& github.ref == 'refs/heads/unstable'
# this is an alias for is-stable || is-unstable
is-release: |
is_release: |
github.event_name == 'push'
&& (github.ref == 'refs/heads/stable'
|| github.ref == 'refs/heads/unstable')
@ -478,7 +478,7 @@ jobs:
# TODO i got lazy here
docker-release:
if: ${{ env.is-release }}
if: ${{ env.is_release }}
needs: [build, test-postman-sqlite, test-postman-mysql, test-postman-postgres]
runs-on: ubuntu-latest