You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
3 years ago
|
name: Publish
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ macos-latest ]
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout git repo
|
||
|
uses: actions/checkout@v1
|
||
|
|
||
|
- name: Install Node, NPM and Yarn
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 15
|
||
|
|
||
|
- 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
|
||
|
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
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
run: |
|
||
|
yarn postinstall && yarn build && yarn electron-builder --publish always --win --mac --linux
|