Skip to content

Commit

Permalink
ci: fix gcloud upload (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkova authored Oct 8, 2024
2 parents 68cc2a4 + 6b93987 commit fadbd1a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,9 @@ jobs:
"x86_64-linux-musl linux-x86_64"
"x86_64-macos-none macos-x86_64"
)
for target in "${targets[@]}"
for t in "${targets[@]}"
do
read -a strarr <<< "$elem"
zig_target=strarr[0]
target=strarr[1]
IFS=' ' read zig_target target <<< "${t}"
urbit_static=$GITHUB_WORKSPACE/zig-out/${zig_target}/urbit
if ${{ inputs.next != null }}; then
next=$(echo "${{ inputs.next }}" | sed 's/[^0-9]//g')
Expand Down

0 comments on commit fadbd1a

Please sign in to comment.