From ace6b8f07bc0c19172ea32457255d68b105423bc Mon Sep 17 00:00:00 2001 From: Zachary Charlop-Powers Date: Wed, 10 Jul 2024 15:48:42 -0400 Subject: [PATCH] trim and update the auri action --- .github/workflows/test.yaml | 32 +++++--------------------------- 1 file changed, 5 insertions(+), 27 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index df493d2..bd8c44e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,38 +11,16 @@ jobs: runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v3 - - uses: oven-sh/setup-bun@v2 - # - name: setup node - # uses: actions/setup-node@v4 - # with: - # node-version: 20 - - - name: install Rust stable + - name: install Rust (stable) uses: dtolnay/rust-toolchain@stable + - name: install Bun + uses: oven-sh/setup-bun@v2 + - name: install dependencies run: bun install - # - name: install dependencies (ubuntu only) - # if: matrix.platform == 'ubuntu-22.04' - # run: | - # curl -fsSL https://bun.sh/install | bash - # source /home/runner/.bashrc - # bun install - - # - name: install dependencies (macos only) - # if: matrix.platform == 'macos-latest' - # run: | - # brew install oven-sh/bun/bun - # bun install - - # - name: install dependencies (windows only) - # if: matrix.platform == 'windows-latest' - # run: | - # powershell -c "irm bun.sh/install.ps1|iex" - # bun install - - - uses: tauri-apps/tauri-action@v0 + - uses: tauri-apps/tauri-action@v0.5.9 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}