Skip to content

Commit 49e3865

Browse files
committed
Fix deprecated Github Actions output usage
1 parent d118ccf commit 49e3865

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Get git tag
3030
id: git_info
3131
if: startsWith(github.ref, 'refs/tags/')
32-
run: echo "::set-output name=tag::${GITHUB_REF##*/}"
32+
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
3333
- name: Determine image tags
3434
id: determine
3535
env:
@@ -43,9 +43,9 @@ jobs:
4343
tag="${tag:1}"
4444
fi
4545
46-
echo "::set-output name=repo::$repo"
47-
echo "::set-output name=tag::$tag"
48-
echo "::set-output name=dock_image::$repo:$tag"
46+
dock_image=$repo:$tag
47+
echo $dock_image
48+
echo "dock_image=$dock_image" >> $GITHUB_OUTPUT
4949
- uses: actions/checkout@v3
5050
- uses: docker/setup-qemu-action@v2
5151
- uses: docker/setup-buildx-action@v2

0 commit comments

Comments
 (0)