Skip to content

Commit

Permalink
Merge pull request #175 from cuebook/pre-release
Browse files Browse the repository at this point in the history
Deploy to docker workflow fix
  • Loading branch information
vincue authored Oct 12, 2021
2 parents 9ffdd60 + 1100949 commit 0cdd7a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_to_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
TAGNAME=latest
if [[ ${{ github.event_name == 'workflow_dispatch' }} ]]; then TAGNAME=${{ github.event.inputs.tagName }}; fi
docker build -t $REGISTRY/$REPOSITORY:$TAGNAME .
docker push $REGISTRY/$REPOSITORY
docker push $REGISTRY/$REPOSITORY --all-tags
echo "::set-output name=image::$REGISTRY/$REPOSITORY:$IMAGE_TAG"
build-and-push-backend:
Expand All @@ -59,7 +59,7 @@ jobs:
TAGNAME=latest
if [[ ${{ github.event_name == 'workflow_dispatch' }} ]]; then TAGNAME=${{ github.event.inputs.tagName }}; fi
docker build -t $REGISTRY/$REPOSITORY:$TAGNAME .
docker push $REGISTRY/$REPOSITORY
docker push $REGISTRY/$REPOSITORY --all-tags
echo "::set-output name=image::$REGISTRY/$REPOSITORY:$IMAGE_TAG"
build-and-push-alerts:
Expand All @@ -85,6 +85,6 @@ jobs:
TAGNAME=latest
if [[ ${{ github.event_name == 'workflow_dispatch' }} ]]; then TAGNAME=${{ github.event.inputs.tagName }}; fi
docker build -t $REGISTRY/$REPOSITORY:$TAGNAME .
docker push $REGISTRY/$REPOSITORY
docker push $REGISTRY/$REPOSITORY --all-tags
echo "::set-output name=image::$REGISTRY/$REPOSITORY:$IMAGE_TAG"

0 comments on commit 0cdd7a3

Please sign in to comment.