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 cc232d7 commit a515d2fCopy full SHA for a515d2f
.github/workflows/build.yml
@@ -11,6 +11,8 @@ jobs:
11
build:
12
name: Build ${{ matrix.target }} - ${{ matrix.arch }}
13
runs-on: ${{ matrix.os }}
14
+ permissions:
15
+ contents: read
16
strategy:
17
matrix:
18
include:
@@ -74,7 +76,9 @@ jobs:
74
76
PYTHON: python3
75
77
78
- name: Build for production with electron-builder
- run: npm run build:${{ matrix.target }}:${{ matrix.arch }}
79
+ run: npm run build:${{ matrix.target }}:${{ matrix.arch }} -- --publish never
80
+ env:
81
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
82
83
- name: "Debug: List release-builds directory"
84
run: |
0 commit comments