bumb upload artifact #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- vue3 | |
env: | |
NODE_VERSION: 20 | |
jobs: | |
windows: | |
name: "Windows" | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install dependencies | |
run: npm i | |
working-directory: app | |
- name: Build | |
run: powershell "$env:NODE_OPTIONS = '--openssl-legacy-provider'; npm run electron:build" | |
working-directory: app | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: windows | |
path: app/dist_electron/win-unpacked | |
linux: | |
name: "Linux" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install dependencies | |
run: npm i | |
working-directory: app | |
- name: Build | |
run: export NODE_OPTIONS=--openssl-legacy-provider && npm run electron:build | |
working-directory: app | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux | |
path: app/dist_electron/linux-unpacked |