Skip to content

Commit 33d51d9

Browse files
committed
ci: read the multi-line script
1 parent 33e79aa commit 33d51d9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ jobs:
168168
if: ${{ matrix.distro }}
169169
id: read-installer-script
170170
run: |
171-
echo "install_deps=$(cat ./script/install-deps.bash)" >> $GITHUB_OUTPUT
171+
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
172+
echo "install_deps<<$EOF" >> $GITHUB_OUTPUT
173+
cat ./script/install-deps.bash >> $GITHUB_OUTPUT
174+
echo "$EOF" >> $GITHUB_OUTPUT
172175
173176
- name: Build Linux Arm64
174177
if: ${{ matrix.distro }}

0 commit comments

Comments
 (0)