Skip to content

Commit 212a28d

Browse files
committed
🔧 Update GitHub Actions workflow to change build commands for Electron applications from 'build' to 'release' for improved clarity and consistency across Windows, MacOS, and Linux builds.
1 parent 97303a5 commit 212a28d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/webpack.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,20 @@ jobs:
3131
- name: Build Window
3232
if: ${{ matrix.os == 'windows-latest' }}
3333
run: |
34-
npm run build:electron:win
34+
npm run release:electron:win
3535
env:
3636
GH_TOKEN: ${{ secrets.GH_TOKEN }}
3737

3838
- name: Build MacOS
3939
if: ${{ matrix.os == 'macos-latest' }}
4040
run: |
41-
npm run build:electron:mac
41+
npm run release:electron:mac
4242
env:
4343
GH_TOKEN: ${{ secrets.GH_TOKEN }}
4444

4545
- name: Build Linux
4646
if: ${{ matrix.os == 'ubuntu-latest' }}
4747
run: |
48-
npm run build:electron:linux
48+
npm run release:electron:linux
4949
env:
5050
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)