We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c58de commit 3a57b37Copy full SHA for 3a57b37
.github/workflows/release.yml
@@ -18,6 +18,7 @@ on:
18
required: false
19
20
jobs:
21
+ # Tauri example workflow - https://v2.tauri.app/distribute/pipelines/github/
22
create_release:
23
name: Create GitHub Release
24
runs-on: ubuntu-latest
@@ -111,14 +112,15 @@ jobs:
111
112
- name: Build Tauri app
113
run: pnpm tauri build
114
- - name: Determine artifact path
115
+ - name: Set artifact path
116
id: artifact_path
117
shell: bash
118
run: |
119
if [[ "${{ runner.os }}" == "Windows" ]]; then
120
echo "artifact_path=src-tauri/target/release/bundle/nsis/" >> $GITHUB_ENV
121
else
122
echo "artifact_path=src-tauri/target/release/bundle/" >> $GITHUB_ENV
123
+ fi
124
125
- name: Upload artifact
126
uses: actions/upload-artifact@v3
0 commit comments