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 393484a commit 0b038daCopy full SHA for 0b038da
.github/workflows/release.yml
@@ -91,6 +91,12 @@ jobs:
91
# - name: Build Next.js
92
# run: pnpm next build
93
94
+ - name: Install system dependencies for Linux
95
+ if: runner.os == 'linux'
96
+ run: |
97
+ sudo apt-get update
98
+ sudo apt-get install -y gio-2.0
99
+
100
- name: Set up Rust
101
uses: actions-rs/toolchain@v1
102
with:
@@ -107,7 +113,7 @@ jobs:
107
113
name: ${{ runner.os }}-artifact
108
114
path: |
109
115
if [[ "${{ runner.os }}" == "Windows" ]]; then
110
- echo "src-tauri/target/release/bundle/nsis/tauri-python-sidecar_0.1.0_x64_Windows-setup.zip"
116
+ echo "src-tauri/target/release/bundle/nsis/"
111
117
else
112
118
echo "src-tauri/target/release/bundle/"
119
fi
0 commit comments