Skip to content

Commit

Permalink
Add tauri script to gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jorge-menjivar committed Dec 15, 2023
1 parent 6cb6e04 commit 15f8208
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
version: [18]
pnpm: [latest]
runs-on: ${{ matrix.platform }}
defaults:
run:
working-directory: ./apps/desktop

steps:
- name: Check out code
Expand All @@ -26,7 +29,7 @@ jobs:
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: './apps/desktop/src-tauri -> target'
workspaces: './src-tauri -> target'

- name: Install dependencies (macOS only)
if: matrix.platform == 'macos'
Expand Down Expand Up @@ -60,7 +63,6 @@ jobs:
tagName: app-v__VERSION__-arm64 # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'App v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
projectPath: ./apps/desktop
releaseDraft: true
prerelease: false
args: --target universal-apple-darwin
Expand All @@ -74,7 +76,6 @@ jobs:
tagName: app-v__VERSION__-x86_64.AppImage # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'App v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
projectPath: ./apps/desktop
releaseDraft: true
prerelease: false

Expand All @@ -87,6 +88,5 @@ jobs:
tagName: app-v__VERSION__-x86_64.AppImage # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'App v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
projectPath: ./apps/desktop
releaseDraft: true
prerelease: false

0 comments on commit 15f8208

Please sign in to comment.