From e34605d16faa73afd3e8bf7792cd55d2821a5845 Mon Sep 17 00:00:00 2001 From: GyDi Date: Fri, 24 Dec 2021 02:14:27 +0800 Subject: [PATCH] test: build action --- .github/workflows/test.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..165572a --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,34 @@ +name: Test CI + +on: + push: + branches: [test] + +jobs: + build-tauri: + strategy: + fail-fast: false + matrix: + platform: [windows-latest] + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v2 + - name: setup node + uses: actions/setup-node@v1 + with: + node-version: 14 + - name: install Rust stable + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - name: install app dependencies and build it + run: yarn && yarn run predev && yarn build + - uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tagName: clash-verge-v__VERSION__ + releaseName: "Clash Verge v__VERSION__" + releaseBody: "This is a test release." + releaseDraft: true + prerelease: false