fix
Some checks failed
Build the portfolio website / build-portfolio-website (push) Successful in 45s
Build the portfolio website / build-and-release-image (push) Failing after 0s

This commit is contained in:
2025-05-17 21:47:18 +03:00
parent c451ec5b92
commit 9f95564022

View File

@ -38,11 +38,11 @@ jobs:
- name: Login to Image registry - name: Login to Image registry
image: quay.io/podman/stable image: quay.io/podman/stable
env: environment:
REGISTRY: ${{ secrets.DOCKER_REGISTRY }} REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
USERNAME: ${{ secrets.DOCKER_USERNAME }} USERNAME: ${{ secrets.DOCKER_USERNAME }}
PASSWORD: ${{ secrets.DOCKER_PASSWORD }} PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: | commands: |
podman build -t "${REGISTRY}/my-portfolio:latest" . podman build -t "${REGISTRY}/my-portfolio:latest" .
podman login -u "${USERNAME}" -p "${PASSWORD}" "${REGISTRY}" podman login -u "${USERNAME}" -p "${PASSWORD}" "${REGISTRY}"
podman push "${REGISTRY}/my-portfolio:latest" podman push "${REGISTRY}/my-portfolio:latest"