From 0cbaf3b6a1ce6d7903a798ac44e74f25c4a39534 Mon Sep 17 00:00:00 2001 From: Anton Fredriksson <79942428+Phoeenix05@users.noreply.github.com> Date: Sat, 12 Aug 2023 14:22:56 +0300 Subject: [PATCH] added build.yml --- .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 0000000..181eade --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +name: Build and Release + +on: + push: + branches: + - sakura + +jobs: + build_releases: + strategy: + matrix: + os: [macos-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Install latest rust nightly + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + override: true + components: tauri-cli + + - name: Build app bundle + run: cargo tauri build