Skip to content

Commit 4c63e73

Browse files
committed
fix build errors
1 parent 6d4a3dd commit 4c63e73

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ jobs:
7272
- name: Get git tag
7373
id: git_info
7474
if: startsWith(github.ref, 'refs/tags/')
75-
run: echo "::set-output name=tag::${GITHUB_REF##*/}"
75+
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
76+
7677
- name: Decide image tag name
7778
id: determine
7879
env:
@@ -83,8 +84,8 @@ jobs:
8384
tag="${git_tag:-latest}"
8485
dock_image=$repo:$tag
8586
echo $dock_image
86-
echo "::set-output name=dock_image::$dock_image"
87-
echo "::set-output name=repo::$repo"
87+
echo "dock_image=$dock_image" >> $GITHUB_OUTPUT
88+
echo "repo=$repo" >> $GITHUB_OUTPUT
8889
8990
- uses: actions/checkout@v2
9091

0 commit comments

Comments
 (0)