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.
51 lines
1.2 KiB
51 lines
1.2 KiB
name: Publish (Windows)
|
|
|
|
# Only allow manual run
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [self-hosted]
|
|
|
|
steps:
|
|
- name: Checkout git repo
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Install Node, NPM
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '14.16.1'
|
|
|
|
- name: Setup yarn
|
|
run: npm install -g yarn
|
|
|
|
- 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:
|
|
# This is used for uploading release assets to github
|
|
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
run: |
|
|
yarn postinstall && yarn build && yarn electron-builder --publish always --win
|
|
|