Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into feat/colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Jun 21, 2022
2 parents 8359556 + 63d4e30 commit fde9d2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ jobs:
echo "DOCKER_TAG: $DOCKER_TAG"
# tag and push the specific tag version
docker tag $GH_IMAGE_NAME $IMAGE_NAME:$DOCKER_TAG
docker tag ${{ steps.gh-docker.outputs.gh-image-name }} $IMAGE_NAME:$DOCKER_TAG
docker push $IMAGE_NAME:$DOCKER_TAG
if [[ $GITHUB_REF == refs/tags/* ]]; then
Expand All @@ -866,11 +866,11 @@ jobs:
if [[ $RELEASE == 'latest' ]]; then
if [[ '${{ needs.release-versions.outputs.latest-release }}' == $GITHUB_REF_NAME ]]; then
docker tag $IMAGE_NAME:$DOCKER_TAG $IMAGE_NAME:$RELEASE
docker tag ${{ steps.gh-docker.outputs.gh-image-name }} $IMAGE_NAME:$RELEASE
docker push $IMAGE_NAME:$RELEASE
fi
else
docker tag $IMAGE_NAME:$DOCKER_TAG $IMAGE_NAME:$RELEASE
docker tag ${{ steps.gh-docker.outputs.gh-image-name }} $IMAGE_NAME:$RELEASE
docker push $IMAGE_NAME:$RELEASE
fi
fi
Expand Down

0 comments on commit fde9d2f

Please sign in to comment.