Skip to content

Vue3 style changes #624

Vue3 style changes

Vue3 style changes #624

Workflow file for this run

name: Build
on: pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [
macos-latest,
ubuntu-latest,
windows-latest
]
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
node-version: 20.11.0
- uses: actions/setup-python@v4
with:
python-version: '2.7'
- name: Build Electron app
shell: bash
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SIGN: false
run: |
yarn install --network-timeout 1000000
yarn electron:build --publish="never"
- name: Upload artifact
uses: actions/[email protected]
with:
# Artifact name
name: ${{ matrix.os }}-artifact
# Directory containing files to upload
path: dist_electron