Skip to content

Commit c3680e0

Browse files
pierremtbjacebrowning
authored andcommitted
To revert: build release with codesign
1 parent 51ebe13 commit c3680e0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build-apps.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ on:
99
- 'v[0-9]+.[0-9]+.[0-9]+'
1010

1111
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') }}
1314
IS_STAGING: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
1415

1516
concurrency:
@@ -103,7 +104,8 @@ jobs:
103104
- name: Set release version
104105
if: ${{ env.IS_RELEASE == 'true' }}
105106
run: |
106-
export VERSION=${GITHUB_REF_NAME#v}
107+
# export VERSION=${GITHUB_REF_NAME#v}
108+
export VERSION=0.0.0
107109
npm run files:set-version
108110
109111
- uses: actions/upload-artifact@v4
@@ -215,6 +217,7 @@ jobs:
215217
CSC_LINK: ${{ secrets.APPLE_CERTIFICATE }}
216218
CSC_KEY_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
217219
CSC_KEYCHAIN: ${{ secrets.APPLE_SIGNING_IDENTITY }}
220+
CSC_FOR_PULL_REQUEST: true
218221
WINDOWS_CERTIFICATE_THUMBPRINT: ${{ secrets.WINDOWS_CERTIFICATE_THUMBPRINT }}
219222
run: npm run tronb:package:${{ env.IS_STAGING == 'true' && 'dev' || 'prod' }}
220223

0 commit comments

Comments
 (0)