Skip to content

Commit

Permalink
ci: read the multi-line script
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jan 3, 2025
1 parent 33e79aa commit 33d51d9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,10 @@ jobs:
if: ${{ matrix.distro }}
id: read-installer-script
run: |
echo "install_deps=$(cat ./script/install-deps.bash)" >> $GITHUB_OUTPUT
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "install_deps<<$EOF" >> $GITHUB_OUTPUT
cat ./script/install-deps.bash >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
- name: Build Linux Arm64
if: ${{ matrix.distro }}
Expand Down

0 comments on commit 33d51d9

Please sign in to comment.