Create nexe.yml

This commit is contained in:
cirro 2024-03-04 03:43:26 +00:00 committed by GitHub
parent fc6608d57a
commit 1a0c315258
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

43
.github/workflows/node.js.yml vendored Normal file
View file

@ -0,0 +1,43 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Nexe build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run build:linux
- run: npm run build:win
- name: Upload Linux client
uses: actions/upload-artifact@v4.3.1
with:
# Artifact name
name: "modpack-client-linux"
path: "build/modpack-client"
- name: Upload Windows client
uses: actions/upload-artifact@v4.3.1
with:
# Artifact name
name: "modpack-client-win.exe"
path: "build/modpack-client.exe"