Skip to content

Commit 8e8a8ac

Browse files
author
Akos Kitta
committed
Fixed the expected tag prefix.
Signed-off-by: Akos Kitta <kittaakos@typefox.io>
1 parent 2f93af4 commit 8e8a8ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
5656
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
5757
IS_NIGHTLY: ${{ github.event_name == 'schedule' }}
58-
IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/v') }}
58+
IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/') }}
5959
run: |
6060
yarn --cwd ./electron/packager/
6161
yarn --cwd ./electron/packager/ package
@@ -88,7 +88,7 @@ jobs:
8888

8989
release:
9090
needs: build
91-
if: startsWith(github.ref, 'refs/tags/v')
91+
if: startsWith(github.ref, 'refs/tags/')
9292
runs-on: ubuntu-latest
9393
steps:
9494
- name: Download [GitHub Actions]

0 commit comments

Comments
 (0)