Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Molter73 committed Nov 18, 2024
1 parent 1b1132e commit d906e93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/collector-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: |
set -x
function build_builder() {
echo "build-image=$1" == "$GITHUB_OUTPUT"
echo "build-image=$1" >> "$GITHUB_OUTPUT"
exit 0
}
Expand Down Expand Up @@ -90,11 +90,11 @@ jobs:
run: |
set -x
function run_multiarch() {
echo "run-multiarch=true" >> "$GITHUB_OUTPUT"
echo "run-multiarch=$1" >> "$GITHUB_OUTPUT"
exit 0
}
if [[ "${{ steps.check-builder.outputs.build-builder }}" == "false" ]]; then
if [[ "${{ steps.check-builder.outputs.build-image }}" == "false" ]]; then
run_multiarch "false"
fi
Expand Down

0 comments on commit d906e93

Please sign in to comment.