We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76c503c commit 3b603d3Copy full SHA for 3b603d3
.github/workflows/main.yml
@@ -70,7 +70,9 @@ jobs:
70
BASE_ARG="--build-arg BASE=${{ matrix.container.base }}"
71
fi
72
docker build -t ${{ env.docker-registry-container-sha }} ${BASE_ARG} -f ${{ env.dockerfile }} .
73
+ docker tag ${{ env.docker-registry-container-sha }} ${{ env.docker-registry-container-latest }}
74
docker push ${{ env.docker-registry-container-sha }}
75
+ docker push ${{ env.docker-registry-container-latest }}
76
working-directory: ${{ env.docker-config-path }}
77
if: github.event_name != 'pull_request' && env.docker-container-exists != 'true'
78
0 commit comments