Skip to content

Commit

Permalink
Fix publish-image workflow (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilco375 authored Oct 30, 2022
1 parent ff5ea95 commit 7db7095
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ jobs:
if [ "$GITHUB_REF_NAME" = 'staging' ]; then
BUILD_ARGS+=$'\nDEPLOY_TARGET=staging'
fi
BUILD_ARGS=${BUILD_ARGS//$'\n'/'%0A'}
echo 'build_args='"$BUILD_ARGS" >> "$GITHUB_OUTPUT"
{
echo 'build_args<<EOF'
echo "$BUILD_ARGS"
echo 'EOF'
} >> "$GITHUB_OUTPUT"
fi
publish:
Expand Down

0 comments on commit 7db7095

Please sign in to comment.