mirror of
https://github.com/felixrieseberg/macintosh.js.git
synced 2024-12-31 22:31:50 +00:00
fix: Sign, upload
This commit is contained in:
parent
0f91d7c62a
commit
a05e37bdff
17
.github/workflows/build.yml
vendored
17
.github/workflows/build.yml
vendored
@ -61,7 +61,7 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
- name: Set MacOS signing certs
|
- name: Set MacOS signing certs
|
||||||
if: matrix.os == 'macos-latest'
|
if: matrix.os == 'macOS-latest'
|
||||||
run: chmod +x tools/add-osx-cert.sh && ./tools/add-osx-cert.sh
|
run: chmod +x tools/add-osx-cert.sh && ./tools/add-osx-cert.sh
|
||||||
env:
|
env:
|
||||||
CERTIFICATE_OSX_APPLICATION: ${{ secrets.MACOS_CERT_P12 }}
|
CERTIFICATE_OSX_APPLICATION: ${{ secrets.MACOS_CERT_P12 }}
|
||||||
@ -83,6 +83,11 @@ jobs:
|
|||||||
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
||||||
WINDOWS_CODESIGN_FILE: ${{ steps.write_file.outputs.filePath }}
|
WINDOWS_CODESIGN_FILE: ${{ steps.write_file.outputs.filePath }}
|
||||||
WINDOWS_CODESIGN_PASSWORD: ${{ secrets.WINDOWS_CODESIGN_PASSWORD }}
|
WINDOWS_CODESIGN_PASSWORD: ${{ secrets.WINDOWS_CODESIGN_PASSWORD }}
|
||||||
|
- name: Archive production artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: out
|
||||||
|
path: out
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
@ -90,8 +95,8 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
electron-app/out/**/*.deb
|
out/**/*.deb
|
||||||
electron-app/out/**/*.dmg
|
out/**/*.dmg
|
||||||
electron-app/out/**/*Setup.exe
|
out/**/*Setup.exe
|
||||||
electron-app/out/**/*.rpm
|
out/**/*.rpm
|
||||||
electron-app/out/**/*.zip
|
out/**/*.zip
|
Loading…
Reference in New Issue
Block a user