Fixed the expected tag prefix.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
Akos Kitta 2020-07-09 10:23:02 +02:00
parent 2f93af4faa
commit 8e8a8ac945

View File

@ -55,7 +55,7 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
IS_NIGHTLY: ${{ github.event_name == 'schedule' }}
IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/v') }}
IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/') }}
run: |
yarn --cwd ./electron/packager/
yarn --cwd ./electron/packager/ package
@ -88,7 +88,7 @@ jobs:
release:
needs: build
if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Download [GitHub Actions]