Skip to content

Commit

Permalink
fix docker releases
Browse files Browse the repository at this point in the history
  • Loading branch information
morsecodist committed Nov 8, 2021
1 parent ca78760 commit 663cd16
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/push-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- 'main'
tags:
- v*

jobs:
build_docker_images:
Expand Down Expand Up @@ -33,8 +35,8 @@ jobs:
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag ${{ github.repository }} $IMAGE_ID:latest
docker tag ${{ github.repository }} $IMAGE_ID:$SHA_TAG
docker tag ${{ github.repository }} $IMAGE_ID:$TAG
docker push $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$SHA_TAG
docker push $IMAGE_ID:$TAG
- name: Checkout
uses: actions/checkout@v2

0 comments on commit 663cd16

Please sign in to comment.