Skip to content

Test Windows Build

Test Windows Build #2

Workflow file for this run

name: Test windows build
on:
workflow_dispatch:
concurrency:
group: 'publish'
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn
- name: Build
run: yarn make
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VITE_GOOGLE_CLIENT_ID: ${{ secrets.GCLIENT }}
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: release/*