From 4422020f75e922d8eef5dc544ac08caabae8647f Mon Sep 17 00:00:00 2001 From: Zebulun McNeill Date: Sat, 4 Jan 2025 11:30:46 -0600 Subject: [PATCH] specify location --- .github/workflows/build-app.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-app.yml b/.github/workflows/build-app.yml index 36639485..ef73bbfe 100644 --- a/.github/workflows/build-app.yml +++ b/.github/workflows/build-app.yml @@ -24,6 +24,10 @@ jobs: args: '' runs-on: ${{ matrix.platform }} + defaults: + run: + working-directory: ./Slopify + steps: - uses: actions/checkout@v4 @@ -38,7 +42,7 @@ jobs: with: node-version: lts/* cache: 'npm' - cache-dependency-path: 'Slopify/package-lock.json' + cache-dependency-path: './Slopify/package-lock.json' - name: install Rust stable uses: dtolnay/rust-toolchain@stable @@ -48,17 +52,17 @@ jobs: - name: Rust cache uses: swatinem/rust-cache@v2 with: - workspaces: './Slopify/src-tauri -> target' + workspaces: './src-tauri -> target' + working-directory: './Slopify' - name: install frontend dependencies - working-directory: ./Slopify run: npm install - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - distPath: './Slopify' + workingDirectory: './Slopify' tagName: app-v__VERSION__ releaseName: 'App v__VERSION__' releaseBody: 'See the assets to download this version and install.'