updated config yml
This commit is contained in:
parent
3c2bb664ce
commit
d62dd46189
8
.github/workflows/electron-dev.yml
vendored
8
.github/workflows/electron-dev.yml
vendored
@ -29,10 +29,16 @@ jobs:
|
|||||||
- name: Publish
|
- name: Publish
|
||||||
run: |
|
run: |
|
||||||
yarn run dist
|
yarn run dist
|
||||||
- name: Cleanup artifacts Windows, Linux and macOS
|
- name: Cleanup artifacts Linux and macOS
|
||||||
|
if: matrix.os != 'windows-latest'
|
||||||
run: |
|
run: |
|
||||||
mkdir artifacts
|
mkdir artifacts
|
||||||
mv -t dist/dev/{*.deb,*.exe,*.dmg,*.AppImage} artifacts
|
mv -t dist/dev/{*.deb,*.exe,*.dmg,*.AppImage} artifacts
|
||||||
|
- name: Cleanup artifacts Windowns
|
||||||
|
if: matrix.os == 'windows-latest'
|
||||||
|
run: |
|
||||||
|
mkdir artifacts
|
||||||
|
mv dist/sandbox/*.exe artifacts
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
|
14
.github/workflows/electron-sandbox.yml
vendored
14
.github/workflows/electron-sandbox.yml
vendored
@ -29,16 +29,16 @@ jobs:
|
|||||||
- name: Publish
|
- name: Publish
|
||||||
run: |
|
run: |
|
||||||
yarn run sandbox
|
yarn run sandbox
|
||||||
- name: Cleanup artifacts Windows, Linux and macOS
|
- name: Cleanup artifacts Linux and macOS
|
||||||
# if: matrix.os != 'windows-latest'
|
if: matrix.os != 'windows-latest'
|
||||||
run: |
|
run: |
|
||||||
mkdir artifacts
|
mkdir artifacts
|
||||||
mv -t dist/sandbox/{*.deb,*.exe,*.dmg,*.AppImage} artifacts
|
mv -t dist/sandbox/{*.deb,*.exe,*.dmg,*.AppImage} artifacts
|
||||||
# - name: Cleanup artifacts Windowns
|
- name: Cleanup artifacts Windowns
|
||||||
# if: matrix.os == 'windows-latest'
|
if: matrix.os == 'windows-latest'
|
||||||
# run: |
|
run: |
|
||||||
# mkdir artifacts
|
mkdir artifacts
|
||||||
# mv dist/sandbox/*.exe artifacts
|
mv dist/sandbox/*.exe artifacts
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user