Actualiser .gitea/workflows/build-push.yaml
Some checks failed
Build and Push Docker Image / build (push) Failing after 59s
Check Calibre-web version / check-version (push) Successful in 15s

This commit is contained in:
2025-04-13 20:57:11 +02:00
parent 43629a815b
commit 43c04620b8

View File

@@ -50,13 +50,13 @@ jobs:
- name: Podman login
run: |
podman login ${{ env.REGISTRY }} \
podman login ${{ env.IMAGE_REGISTRY }} \
-u ${{ env.REGISTRY_USER }} \
-p ${{ env.REGISTRY_PASSWORD }}
- name: Build and tag image
run: |
podman build -t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAGS }} .
podman build -t ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAGS }} .
- name: Canceled building
if: cancelled()
@@ -78,7 +78,7 @@ jobs:
- name: Push image to registry
run: |
podman push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAGS }}
podman push ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAGS }}
- name: Push image failed