Skip to content

Commit 33e79aa

Browse files
committed
ci: read/interpolate the install script
1 parent 08840f4 commit 33e79aa

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,12 @@ jobs:
164164
docker cp zeromq-temp:/app/build ./
165165
docker rm -f zeromq-temp
166166
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+
167173
- name: Build Linux Arm64
168174
if: ${{ matrix.distro }}
169175
uses: uraimo/run-on-arch-action@v2.8.1
@@ -178,7 +184,7 @@ jobs:
178184
env: |
179185
VCPKG_FORCE_SYSTEM_BINARIES: 1
180186
install: |
181-
./script/install-deps.bash
187+
${{ steps.read-installer-script.outputs.install_deps }}
182188
183189
run: |
184190
pnpm install && \

0 commit comments

Comments
 (0)