Skip to content

update actions, try to fix windows build again #3

update actions, try to fix windows build again

update actions, try to fix windows build again #3

Workflow file for this run

name: Build application
on:
push:
branches:
- main
paths:
- '.github/workflows/build.yml'
- package.json
workflow_dispatch:
create:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libudev-dev
- name: Install dependencies on Windows
if: matrix.os == 'windows-latest'
run: |
choco install -y windows-sdk-10.0
- name: Install Node.js dependencies
run: npm install
- name: Make app executable on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
chmod +x build/SlimeTora-linux-x64/SlimeTora
- name: Build the application
run: npm run build
- name: Archive build artifacts for Ubuntu
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
name: build-artifacts-linux
path: build/*linux*
- name: Archive build artifacts for Windows
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
with:
name: build-artifacts-win32
path: build/*win32*