We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd61f3 commit 07aecf9Copy full SHA for 07aecf9
.github/workflows/main.yml
@@ -71,9 +71,9 @@ jobs:
71
if [ "${{ github.event_name }}" = "push" ]; then
72
TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}"
73
fi
74
- echo ::set-output name=version::${VERSION}
75
- echo ::set-output name=tags::${TAGS}
76
- echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
+ echo version=${VERSION} >> $GITHUB_OUTPUT
+ echo tags=${TAGS} >> $GITHUB_OUTPUT
+ echo created=$(date -u +'%Y-%m-%dT%H:%M:%SZ') >> $GITHUB_OUTPUT
77
- name: Set up Docker Buildx
78
uses: docker/setup-buildx-action@v1
79
- name: Login to GitHub Container Registry
0 commit comments