From 1023d905291e6d92dd19f23c1abd031fe2ae242b Mon Sep 17 00:00:00 2001 From: ZanzyTHEbar Date: Wed, 10 May 2023 15:03:09 +0100 Subject: [PATCH] feat: update ci to use docker container --- .github/workflows/ci.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 76854fd7..bef25ae3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -57,18 +57,16 @@ jobs: image: ghcr.io/zanzythebar/tauridocker:latest options: -v ${{ github.workspace }}:/workspace run: | - export NODE_VERSION=16.13.0 - mkdir build echo "::group::install node dependencies" npm install -g pnpm npm install -g typescript pnpm install echo "::group::tauri build" - pnpm tauri build + pnpm tauri build echo "::endgroup::" - name: Verify build run: | - ls -la build + ls -la - name: Node.js setup ${{ matrix.node-version }} if: matrix.platform == 'windows-latest' || matrix.platform == 'macos-latest'