🔧 chore(workflow): simplify docker image tagging and pushing
All checks were successful
build-and-push / docker (push) Successful in 1m10s
All checks were successful
build-and-push / docker (push) Successful in 1m10s
- remove specific sha tag from build and push steps - streamline workflow by focusing on latest tag
This commit is contained in:
parent
eb5b9bbb6e
commit
0a729d0cbf
1 changed files with 0 additions and 2 deletions
|
|
@ -21,10 +21,8 @@ jobs:
|
|||
- name: Build image
|
||||
run: |
|
||||
docker buildx build --load \
|
||||
-t "${{ secrets.REGISTRY_IMAGE }}:${{ github.sha }}" \
|
||||
-t "${{ secrets.REGISTRY_IMAGE }}:latest" .
|
||||
|
||||
- name: Push image
|
||||
run: |
|
||||
docker push "${{ secrets.REGISTRY_IMAGE }}:${{ github.sha }}"
|
||||
docker push "${{ secrets.REGISTRY_IMAGE }}:latest"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue