Added build process
This commit is contained in:
parent
29aff43dce
commit
865642a655
31
.gitea/workflows/build.yml
Normal file
31
.gitea/workflows/build.yml
Normal file
@ -0,0 +1,31 @@
|
||||
name: SharePulse build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
build-jar:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 'node' # Use latest version
|
||||
npm-version: 'latest'
|
||||
|
||||
- name: Set up NeutralinoJS CLI
|
||||
run: npm i -g @neutralinojs/neu
|
||||
|
||||
- name: Build app
|
||||
run: neu build
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: cooperate-cleaner-executables
|
||||
path: dist/*
|
Loading…
x
Reference in New Issue
Block a user