Added 4 retries to mac build. #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
publish: | |
name: "Publish" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Install Node.js and NPM | |
uses: actions/setup-node@master | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
# npm ci is better, but requires package-lock.json file | |
run: npm install | |
# - name: Install dmg-license | |
# if: startsWith(matrix.os, 'macos') | |
# run: npm i dmg-license | |
- name: Build app | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CSC_LINK: ${{ secrets.CSC_LINK }} | |
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }} | |
run: npm run release | |
# https://abskmj.github.io/notes/posts/github/actions/setup-snapcraft/ | |
# - name: Install Snapcraft | |
# uses: samuelmeuli/action-snapcraft@v1 | |
# if: startsWith(matrix.os, 'ubuntu') | |
# with: | |
# snapcraft_token: ${{ secrets.SNAPCRAFT_TOKEN }} | |
# Mac building fails for some reason when in the same matrix as the other builds or without the other builds, | |
# So that's why it is here: | |
publish_mac: | |
name: "Publish MacOS" | |
runs-on: macos-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Install Node.js and NPM | |
uses: actions/setup-node@master | |
with: | |
node-version: 18 | |
- name: Install node-gyp | |
run: npm install -g node-gyp | |
- name: Sleep for 10 seconds | |
run: sleep 10 | |
shell: bash | |
- name: Install dependencies | |
run: npm install | |
- name: Install dmg-license | |
run: npm i dmg-license | |
- name: Build app | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CSC_LINK: ${{ secrets.CSC_LINK }} | |
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }} | |
APPLE_ID: ${{ secrets.APPLEID }} | |
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLEIDPASS }} | |
APPLE_TEAM_ID: ${{ secrets.APPLETEAMID }} | |
run: npm run release || npm run release || npm run release || npm run release |