Skip to content

Commit

Permalink
fix GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrajodas committed Dec 5, 2023
1 parent bc78d9b commit b53dd24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
-
name: 'Check out the repo'
uses: actions/checkout@v2
uses: actions/checkout@v3
-
name: 'Print Docker version'
run: 'docker -v'
Expand All @@ -40,8 +40,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 "is_semantic_tag=$IS_SEMANTIC_TAG" >> $GITHUB_OUTPUT
echo "app_image_tag=$TAG" >> $GITHUB_OUTPUT
-
name: 'Push image to ECR'
uses: keboola/action-push-to-ecr@master
Expand All @@ -63,7 +63,7 @@ jobs:
steps:
-
name: 'Check out the repo'
uses: actions/checkout@v2
uses: actions/checkout@v3
-
name: 'Pull image from ECR'
uses: keboola/action-pull-from-ecr@master
Expand Down

0 comments on commit b53dd24

Please sign in to comment.