Skip to content

Add teamId to notarize step to (hopefully) fix CI/CD #50

Add teamId to notarize step to (hopefully) fix CI/CD

Add teamId to notarize step to (hopefully) fix CI/CD #50

Workflow file for this run

name: Publish
on:
push:
branches:
- release
jobs:
publish:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
steps:
- name: Checkout git repo
uses: actions/checkout@v1
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Pull Git LFS
run: git lfs pull
- name: Install Node and NPM
uses: actions/setup-node@v1
with:
node-version: 16
cache: npm
- uses: actions/setup-python@v4 # https://github.com/nodejs/node-gyp/issues/2869
with:
python-version: '3.11'
- name: Install dependencies
run: |
npm install
- name: Publish releases
env:
# These values are used for auto updates signing
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS }}
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# This is used for uploading release assets to github
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm run postinstall
npm run build
npm exec electron-builder -- --publish always