Skip to content

specify location #325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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