Skip to content

Commit

Permalink
Fix ,, syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bschilder committed Dec 10, 2023
1 parent 75fd6f6 commit 265a77b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -463,11 +463,11 @@ runs:
echo $version
echo "BASE_IMAGE=${{ matrix.config.cont }}" >> $GITHUB_ENV
#### Ensure dockerOrg is lowercase ####
if inputs.docker_registry=="ghcr.io";
if ${{ inputs.docker_registry }}=="ghcr.io";
then
echo "dockerOrg=${{ github.repository_owner,, }}" >> $GITHUB_ENV
echo "dockerOrg=${ github.repository_owner,, }" >> $GITHUB_ENV
else
echo "dockerOrg=${{ inputs.docker_org,, }}" >> $GITHUB_ENV
echo "dockerOrg=${ inputs.docker_org,, }" >> $GITHUB_ENV
fi
shell: bash {0}

Expand Down

0 comments on commit 265a77b

Please sign in to comment.