From a9ffbdf2decc50296c344a2457b00dd5db3c99f4 Mon Sep 17 00:00:00 2001 From: iAmir Date: Thu, 9 Nov 2023 03:36:52 +0330 Subject: [PATCH] add build workflow --- .github/workflows/build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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 00000000..631e950f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +name: "Build" +on: + workflow_dispatch: + push: + branches: + - "master" + pull_request: + branches: + - "master" + +jobs: + build-omp-launcher: + name: Windows build + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - name: setup node + uses: actions/setup-node@v4 + with: + node-version: 20 + - name: install Rust stable + uses: dtolnay/rust-toolchain@nightly + - name: install frontend dependencies + run: yarn install # change this to npm or pnpm depending on which one you use + - uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}