Skip to content

ビルドエラーを修正 #7

ビルドエラーを修正

ビルドエラーを修正 #7

Workflow file for this run

name: Build & Release
on:
push:
branches: ["main"]
jobs:
build:
strategy:
matrix:
os: [macos, windows]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Get package version
id: get_version
run: echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
shell: bash
- name: Build Application
run: npm run make
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: leaner-waigaya-v${{ steps.get_version.outputs.VERSION }}-${{ matrix.os }}
path: out/make