Skip to content

Commit e946f40

Browse files
committed
turn off windows codesigning for now in workflow
1 parent 0c95771 commit e946f40

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/windows.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,26 @@ jobs:
3434
node-version: 16
3535
cache: npm
3636

37-
- name: Codesign setup for Windows
38-
#if: matrix.os == 'windows-latest' && startsWith(github.ref, 'refs/tags/')
39-
id: write_file
40-
uses: timheuer/[email protected]
41-
with:
42-
fileName: "win-cert.p12"
43-
encodedString: ${{ secrets.WINDOWS_CERTIFICATE_P12 }}
37+
# - name: Codesign setup for Windows
38+
# #if: matrix.os == 'windows-latest' && startsWith(github.ref, 'refs/tags/')
39+
# id: write_file
40+
# uses: timheuer/[email protected]
41+
# with:
42+
# fileName: "win-cert.p12"
43+
# encodedString: ${{ secrets.WINDOWS_CERTIFICATE_P12 }}
4444

4545
- name: Build
4646
run: |
47-
$env:CSC_LINK="${{ steps.write_file.outputs.filePath }}"
47+
# $env:CSC_LINK="${{ steps.write_file.outputs.filePath }}"
4848
npm install --save-dev cross-env
4949
npm install
5050
npm run pack
5151
npm run dist:draft
5252

5353
- name: Publish
5454
continue-on-error: true
55-
if: "contains(github.event.head_commit.message, '[publish]')"
5655
#if: (github.event_name == 'release') # or values = 'push' or 'pull_request'
56+
if: "contains(github.event.head_commit.message, '[publish]')"
5757
run: |
5858
$env:CSC_LINK="${{ steps.write_file.outputs.filePath }}"
5959
npm run dist

0 commit comments

Comments
 (0)