Spaces:
Paused
Paused
icebear0828 commited on
Commit ·
a5b6a79
1
Parent(s): 0b9c6c8
ci: add prepare-pack step to release workflow
Browse files
.github/workflows/release.yml
CHANGED
|
@@ -73,6 +73,10 @@ jobs:
|
|
| 73 |
working-directory: packages/electron
|
| 74 |
run: node electron/build.mjs
|
| 75 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
- name: Pack (${{ matrix.platform }}${{ matrix.arch && format('-{0}', matrix.arch) || '' }})
|
| 77 |
working-directory: packages/electron
|
| 78 |
run: npx electron-builder --config electron-builder.yml --${{ matrix.platform }} ${{ matrix.arch && format('--{0}', matrix.arch) || '' }} --publish always
|
|
|
|
| 73 |
working-directory: packages/electron
|
| 74 |
run: node electron/build.mjs
|
| 75 |
|
| 76 |
+
- name: Prepare pack (copy root resources)
|
| 77 |
+
working-directory: packages/electron
|
| 78 |
+
run: node electron/prepare-pack.mjs
|
| 79 |
+
|
| 80 |
- name: Pack (${{ matrix.platform }}${{ matrix.arch && format('-{0}', matrix.arch) || '' }})
|
| 81 |
working-directory: packages/electron
|
| 82 |
run: npx electron-builder --config electron-builder.yml --${{ matrix.platform }} ${{ matrix.arch && format('--{0}', matrix.arch) || '' }} --publish always
|