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 2f93af4 commit 8e8a8acCopy full SHA for 8e8a8ac
.github/workflows/build.yml
@@ -55,7 +55,7 @@ jobs:
55
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
56
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
57
IS_NIGHTLY: ${{ github.event_name == 'schedule' }}
58
- IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/v') }}
+ IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/') }}
59
run: |
60
yarn --cwd ./electron/packager/
61
yarn --cwd ./electron/packager/ package
@@ -88,7 +88,7 @@ jobs:
88
89
release:
90
needs: build
91
- if: startsWith(github.ref, 'refs/tags/v')
+ if: startsWith(github.ref, 'refs/tags/')
92
runs-on: ubuntu-latest
93
steps:
94
- name: Download [GitHub Actions]
0 commit comments