Skip to content

Commit

Permalink
Merge pull request #325 from DishpitDev/staging
Browse files Browse the repository at this point in the history
specify location
  • Loading branch information
Dishpit authored Jan 4, 2025
2 parents 4e96a7f + 4422020 commit ac066ce
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
args: ''

runs-on: ${{ matrix.platform }}
defaults:
run:
working-directory: ./Slopify

steps:
- uses: actions/checkout@v4

Expand All @@ -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
Expand All @@ -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.'
Expand Down

0 comments on commit ac066ce

Please sign in to comment.