Skip to content

Refactor build artifact path in GitHub workflow #18

Refactor build artifact path in GitHub workflow

Refactor build artifact path in GitHub workflow #18

Workflow file for this run

name: cross-platform-build
on:
push:
branches:
- main
- dev
- tauri
pull_request:
branches:
- main
- dev
- tauri
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm tauri build
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- name: publish artifacts
uses: actions/upload-artifact@v4
with:
name: build ${{ matrix.os }} ${{ github.sha }}
path: |
./src-tauri/target/release/bundle/nsis
./src-tauri/target/release/bundle.js
if-no-files-found: error
overwrite: true