Skip to content

fix(build): replace bun with node-based toolchain for compatibility #7

fix(build): replace bun with node-based toolchain for compatibility

fix(build): replace bun with node-based toolchain for compatibility #7

Workflow file for this run

name: Distribution
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 23
- name: Install Dependencies
run: |-
npm install
- name: Pack
run: npm run dist
- name: List Contents
run: ls -lh --color=auto ./dist
- uses: actions/upload-artifact@v4
with:
name: win32-x64
path: "./dist/Alicorn Launcher-win32-x64.zip"
- uses: actions/upload-artifact@v4
with:
name: win32-arm64
path: "./dist/Alicorn Launcher-win32-arm64.zip"
- uses: actions/upload-artifact@v4
with:
name: darwin-x64
path: "./dist/Alicorn Launcher-darwin-x64.dmg"
- uses: actions/upload-artifact@v4
with:
name: darwin-arm64
path: "./dist/Alicorn Launcher-darwin-arm64.dmg"
- uses: actions/upload-artifact@v4
with:
name: linux-x64
path: "./dist/Alicorn Launcher-linux-x64.tar.gz"
- uses: actions/upload-artifact@v4
with:
name: linux-arm64
path: "./dist/Alicorn Launcher-linux-arm64.tar.gz"