Skip to content

Commit

Permalink
fix: eoi of subcommands
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 bd52b8a commit 7703493
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,19 @@ jobs:
fi
IMAGE_NAME="${repo}/${name}"
IMAGES=$(cat << EOT
IMAGES=$(cat << EOI
name=ghcr.io/${IMAGE_NAME},enable=true
name=quay.io/${IMAGE_NAME},enable=$( [[ -n "***" ]] && echo "true" || echo "false" )
name=docker.io/${IMAGE_NAME},enable=$( [[ -n "" ]] && echo "true" || echo "false" )
EOT)
EOI
)
TAGS=$(cat <<EOT
TAGS=$(cat <<EOI
type=semver,pattern={{version}},value=
type=schedule,pattern=nightly
type=ref,enable=true,priority=600,prefix=pr-,suffix=,event=pr
EOT)
EOI
)
echo "setting images ${IMAGES}"
echo "settings tag ${TAGS}"
Expand Down

0 comments on commit 7703493

Please sign in to comment.