Skip to content

Commit

Permalink
invalid script
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Buchleitner <[email protected]>
  • Loading branch information
mabunixda committed Dec 6, 2024
1 parent ba7acda commit bd52b8a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,17 @@ jobs:
fi
IMAGE_NAME="${repo}/${name}"
IMAGES=<<EOT
IMAGES=$(cat << EOT
name=ghcr.io/${IMAGE_NAME},enable=true
name=quay.io/${IMAGE_NAME},enable=$( [[ -n "${{env.QUAY_USER}}" ]] && echo "true" || echo "false" )
name=docker.io/${IMAGE_NAME},enable=$( [[ -n "${{env.DOCKER_USER}}" ]] && echo "true" || echo "false" )
EOT
name=quay.io/${IMAGE_NAME},enable=$( [[ -n "***" ]] && echo "true" || echo "false" )
name=docker.io/${IMAGE_NAME},enable=$( [[ -n "" ]] && echo "true" || echo "false" )
EOT)
TAGS=<<EOT
type=semver,pattern={{version}},value=${{ needs.pre-commit.outputs.version }}
TAGS=$(cat <<EOT
type=semver,pattern={{version}},value=
type=schedule,pattern=nightly
type=ref,enable=true,priority=600,prefix=pr-,suffix=,event=pr
EOT
EOT)
echo "setting images ${IMAGES}"
echo "settings tag ${TAGS}"
Expand Down

0 comments on commit bd52b8a

Please sign in to comment.