Skip to content

chore: release tag

chore: release tag #34

Workflow file for this run

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: yarn install --network-timeout 600000
- name: Build and publish to github release.
run: npx cross-env GH_TOKEN=${{ secrets.GH_TOKEN }} yarn deploy
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: yarn install --network-timeout 600000
- name: Build and publish to github release.
run: npx cross-env GH_TOKEN=${{ secrets.GH_TOKEN }} yarn deploy
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup Python
uses: actions/setup-python@v4.5.0
with:
python-version: 3
- name: Install dependencies
run: yarn install --network-timeout 600000
- name: Build and publish to github release.
run: npx cross-env GH_TOKEN=${{ secrets.GH_TOKEN }} yarn deploy