From 5f8ba166cbef05ea85f6be97de60e8cad0834d1d Mon Sep 17 00:00:00 2001 From: azures04 Date: Sun, 11 May 2025 20:43:47 +0200 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..1c9168b --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,32 @@ +name: Release app +on: + workflow_dispatch: null +jobs: + release: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - windows-latest + - macos-latest + - macos-latest + - ubuntu-latest + steps: + - name: Check out Git repository + uses: actions/checkout@4.2.2 + - name: Install Node.js, NPM and Yarn + uses: actions/setup-node@4.4.0 + with: + node-version: 20 + - name: Config git user + run: | + git config --global user.email "gilleslazure04@gmail.com" + git config --global user.name "Gilles Lazure " + - name: Install app dependencies + run: | + npm i + - name: Build app + run: | + node build + env: + GITHUB_TOKEN: ${{ github.token }}