🔧 chore(workflow): simplify docker image tagging and pushing
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:
nocci 2025-12-29 15:08:00 +00:00
parent eb5b9bbb6e
commit 0a729d0cbf

View file

@ -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"