We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 309ca11 + 037fe51 commit 9013ab2Copy full SHA for 9013ab2
.github/workflows/image.yml
@@ -21,8 +21,8 @@ jobs:
21
IMAGE=adminer:${VARIANT/\//-}-$(date +%s)
22
docker build "$VARIANT" --tag "$IMAGE" |sed 's/^Step/::endgroup::\n::group::Step/'
23
printf "::endgroup::\n"
24
- printf "::set-output name=%s::%s\n" "image" "$IMAGE"
25
- printf "::set-output name=%s::%s\n" "version" "$(awk '/^ENV\s+ADMINER_VERSION/{print $3}' "$VARIANT/Dockerfile")"
+ printf "image=%s\n" "$IMAGE" >> $GITHUB_OUTPUT
+ printf "version=%s\n" "$(awk '/^ENV\s+ADMINER_VERSION/{print $3}' "$VARIANT/Dockerfile")" >> $GITHUB_OUTPUT
26
env:
27
VARIANT: ${{ matrix.variant }}
28
- name: Smoketest
0 commit comments