Skip to content

Commit

Permalink
fix: win paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Nov 8, 2024
1 parent 7a0789f commit 7dbacd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-tauri-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,10 @@ jobs:
- name: Build and Sign the App
run: |
ls D:\a\
ls
# read productName and version from tauri.conf.json
$TAURI_CONF = (Get-Content src-tauri/tauri.conf.json | Out-String | ConvertFrom-Json)
$TAURI_CONF = (Get-Content src-tauri\tauri.conf.json | Out-String | ConvertFrom-Json)
$APP_PRODUCT_NAME_VERSION = '{0}_{1}' -f $TAURI_CONF.productName, $TAURI_CONF.version
npm run tauri build -- --verbose # building in verbose mode to get reasonable logging output in case of failure
Expand Down

0 comments on commit 7dbacd1

Please sign in to comment.