Skip to content

Commit

Permalink
ci: replace deprecated set-output with GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrajodas committed Feb 2, 2025
1 parent fecf426 commit 49240ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
TAG="${GITHUB_REF##*/}"
IS_SEMANTIC_TAG=$(echo "$TAG" | grep -q '^v\?[0-9]\+\.[0-9]\+\.[0-9]\+$' && echo true || echo false)
echo "Tag = '$TAG', is semantic tag = '$IS_SEMANTIC_TAG'"
echo "::set-output name=app_image_tag::$TAG"
echo "::set-output name=is_semantic_tag::$IS_SEMANTIC_TAG"
echo "app_image_tag=$TAG" >> $GITHUB_OUTPUT
echo "is_semantic_tag=$IS_SEMANTIC_TAG" >> $GITHUB_OUTPUT
-
name: Push image to ECR
uses: keboola/action-push-to-ecr@master
Expand Down

0 comments on commit 49240ed

Please sign in to comment.