Skip to content

install distutils on publish action #40

install distutils on publish action

install distutils on publish action #40

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Install Node and NPM
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: install distutils on osx
if: runner.os == 'macOS'
run: |
pip install setuptools
- name: run post-clone
run: |
npm run post-clone
- name: Publish releases
env:
# These values are used for auto updates signing
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASS: ${{ secrets.APPLE_SINGLE_APP_MIMIC }}
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# This is used for uploading release assets to github
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
npm run postinstall
npm run build
npm exec electron-builder -- --publish always --mac