Update publish.yml #59
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: Publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v1 | |
- name: Install Node, NPM and Yarn | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '2.7' | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v1 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependencies | |
run: | | |
yarn install --prefer-offline | |
- name: Install dependencies | |
run: | | |
yarn install | |
- name: Publish releases | |
env: | |
# These values are used for auto updates signing | |
CSC_IDENTITY_AUTO_DISCOVERY: $({ secrets.AUTO_DISCOVERY }) | |
# This is used for uploading release assets to github | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN}} | |
run: | | |
yarn postinstall && yarn build && yarn electron-builder --publish always --win |