Skip to content

Commit

Permalink
Merge pull request #1511 from kenhys/backport-fix-refname
Browse files Browse the repository at this point in the history
github: fix variable name for v1.16
  • Loading branch information
kenhys authored Jul 12, 2024
2 parents aae8cab + ffafccc commit 4e315a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |
echo "for_all=true" >> "$GITHUB_OUTPUT"
for component in ${{ join(fromJSON(env.ALL_COMPONENTS), ' ') }}; do
if [[ ${{ env.github.ref_name }} == *"$component"* ]]; then
if [[ ${{ github.ref_name }} == *"$component"* ]]; then
echo "for_all=false" >> "$GITHUB_OUTPUT"
echo "component=$component" >> "$GITHUB_OUTPUT"
break
Expand Down

0 comments on commit 4e315a3

Please sign in to comment.