Skip to content

Commit 2f6d9bf

Browse files
committed
🔧 Simplify GitHub Actions workflow by updating build commands for Electron applications to remove 'electron' prefix, enhancing clarity and consistency across Windows, MacOS, and Linux builds.
1 parent 085a6e3 commit 2f6d9bf

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 release:electron:win
34+
npm run release: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 release:electron:mac
41+
npm run release: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 release:electron:linux
48+
npm run release:linux
4949
env:
5050
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)