Skip to content

Commit

Permalink
ci: read/interpolate the install script
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jan 2, 2025
1 parent 08840f4 commit 33e79aa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,12 @@ jobs:
docker cp zeromq-temp:/app/build ./
docker rm -f zeromq-temp
- name: Read Installer Script
if: ${{ matrix.distro }}
id: read-installer-script
run: |
echo "install_deps=$(cat ./script/install-deps.bash)" >> $GITHUB_OUTPUT
- name: Build Linux Arm64
if: ${{ matrix.distro }}
uses: uraimo/[email protected]
Expand All @@ -178,7 +184,7 @@ jobs:
env: |
VCPKG_FORCE_SYSTEM_BINARIES: 1
install: |
./script/install-deps.bash
${{ steps.read-installer-script.outputs.install_deps }}
run: |
pnpm install && \
Expand Down

0 comments on commit 33e79aa

Please sign in to comment.