Skip to content

Commit

Permalink
Fix deprecated Github Actions output usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Jun 5, 2023
1 parent d118ccf commit 49e3865
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Get git tag
id: git_info
if: startsWith(github.ref, 'refs/tags/')
run: echo "::set-output name=tag::${GITHUB_REF##*/}"
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
- name: Determine image tags
id: determine
env:
Expand All @@ -43,9 +43,9 @@ jobs:
tag="${tag:1}"
fi
echo "::set-output name=repo::$repo"
echo "::set-output name=tag::$tag"
echo "::set-output name=dock_image::$repo:$tag"
dock_image=$repo:$tag
echo $dock_image
echo "dock_image=$dock_image" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
Expand Down

0 comments on commit 49e3865

Please sign in to comment.