From 865642a65529f37c2ea1335531ded4bda48212aa Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 26 May 2024 10:56:35 +0200 Subject: [PATCH] Added build process --- .gitea/workflows/build.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..56aea1b --- /dev/null +++ b/.gitea/workflows/build.yml @@ -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/* \ No newline at end of file