Skip to content

Commit

Permalink
Merge pull request cloud-barista#168 from jongwooo/chore/replace-depr…
Browse files Browse the repository at this point in the history
…ecated-command-with-environment-file

Replace deprecated command with environment file
  • Loading branch information
seokho-son authored Sep 4, 2023
2 parents fd6d47b + f3e7031 commit 159a3e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-multi-arch-container-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:
if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}.*$ ]]; then
DOCKER_TAGS="$DOCKER_TAGS,${DOCKER_IMAGE}:latest"
fi
echo ::set-output name=docker-tags::${DOCKER_TAGS}
echo "docker-tags=${DOCKER_TAGS}" >> $GITHUB_OUTPUT
echo ${DOCKER_TAGS}
GHCR_IMAGE=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
GHCR_TAGS="${GHCR_IMAGE}:${VERSION}"
if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}.*$ ]]; then
GHCR_TAGS="$GHCR_TAGS,${GHCR_IMAGE}:latest"
fi
echo ::set-output name=ghcr-tags::${GHCR_TAGS}
echo "ghcr-tags=${GHCR_TAGS}" >> $GITHUB_OUTPUT
echo ${GHCR_TAGS}
- name: Set up QEMU
Expand Down

0 comments on commit 159a3e5

Please sign in to comment.