Skip to content

Commit

Permalink
GHA: replace deprecated set-output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
barend-xebia committed Nov 28, 2024
1 parent 7d4db76 commit fd95815
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dockerhub_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,19 @@ jobs:
BUILD_ARGS="${BUILD_ARGS//$'\n'/'%0A'}"
BUILD_ARGS="${BUILD_ARGS//$'\r'/'%0D'}"
echo "::set-output name=build_args::$BUILD_ARGS"
echo "build_args=${BUILD_ARGS}" >> $GITHUB_OUTPUT
- name: Prepare
id: prep
run: |
DOCKER_TAG="${{ matrix.DOCKER_TAG }}"
DOCKER_IMAGE_NAME="$DOCKER_REPO:${DOCKER_TAG%%,*}"
echo ::set-output name=image_name::${DOCKER_IMAGE_NAME}
echo "image_name=${DOCKER_IMAGE_NAME}" >> $GITHUB_OUTPUT
TAGS="$DOCKER_REPO:${DOCKER_TAG//,/,$DOCKER_REPO:}"
echo ::set-output name=tags::${TAGS}
echo "tags=${TAGS}" >> $GITHUB_OUTPUT
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down

0 comments on commit fd95815

Please sign in to comment.