v1.0.0 (#308) #79
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" | |
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 }} | |
GA_SECRET: ${{ secrets.GA_SECRET }} | |
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 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 }} | |
run: npm run release |