Skip to content

Commit 3a57b37

Browse files
committed
fix artifact path
1 parent 58c58de commit 3a57b37

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ on:
1818
required: false
1919

2020
jobs:
21+
# Tauri example workflow - https://v2.tauri.app/distribute/pipelines/github/
2122
create_release:
2223
name: Create GitHub Release
2324
runs-on: ubuntu-latest
@@ -111,14 +112,15 @@ jobs:
111112
- name: Build Tauri app
112113
run: pnpm tauri build
113114

114-
- name: Determine artifact path
115+
- name: Set artifact path
115116
id: artifact_path
116117
shell: bash
117118
run: |
118119
if [[ "${{ runner.os }}" == "Windows" ]]; then
119120
echo "artifact_path=src-tauri/target/release/bundle/nsis/" >> $GITHUB_ENV
120121
else
121122
echo "artifact_path=src-tauri/target/release/bundle/" >> $GITHUB_ENV
123+
fi
122124
123125
- name: Upload artifact
124126
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)