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 08840f4 commit 33e79aaCopy full SHA for 33e79aa
.github/workflows/CI.yml
@@ -164,6 +164,12 @@ jobs:
164
docker cp zeromq-temp:/app/build ./
165
docker rm -f zeromq-temp
166
167
+ - name: Read Installer Script
168
+ if: ${{ matrix.distro }}
169
+ id: read-installer-script
170
+ run: |
171
+ echo "install_deps=$(cat ./script/install-deps.bash)" >> $GITHUB_OUTPUT
172
+
173
- name: Build Linux Arm64
174
if: ${{ matrix.distro }}
175
uses: uraimo/run-on-arch-action@v2.8.1
@@ -178,7 +184,7 @@ jobs:
178
184
env: |
179
185
VCPKG_FORCE_SYSTEM_BINARIES: 1
180
186
install: |
181
- ./script/install-deps.bash
187
+ ${{ steps.read-installer-script.outputs.install_deps }}
182
188
183
189
run: |
190
pnpm install && \
0 commit comments