File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 9
9
- ' v[0-9]+.[0-9]+.[0-9]+'
10
10
11
11
env :
12
- IS_RELEASE : ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }}
12
+ IS_RELEASE : true
13
+ # IS_RELEASE: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }}
13
14
IS_STAGING : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
14
15
15
16
concurrency :
@@ -103,7 +104,8 @@ jobs:
103
104
- name : Set release version
104
105
if : ${{ env.IS_RELEASE == 'true' }}
105
106
run : |
106
- export VERSION=${GITHUB_REF_NAME#v}
107
+ # export VERSION=${GITHUB_REF_NAME#v}
108
+ export VERSION=0.0.0
107
109
npm run files:set-version
108
110
109
111
- uses : actions/upload-artifact@v4
@@ -215,6 +217,7 @@ jobs:
215
217
CSC_LINK : ${{ secrets.APPLE_CERTIFICATE }}
216
218
CSC_KEY_PASSWORD : ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
217
219
CSC_KEYCHAIN : ${{ secrets.APPLE_SIGNING_IDENTITY }}
220
+ CSC_FOR_PULL_REQUEST : true
218
221
WINDOWS_CERTIFICATE_THUMBPRINT : ${{ secrets.WINDOWS_CERTIFICATE_THUMBPRINT }}
219
222
run : npm run tronb:package:${{ env.IS_STAGING == 'true' && 'dev' || 'prod' }}
220
223
You can’t perform that action at this time.
0 commit comments