ffs
Some checks failed
Build and Push Docker Image / build (push) Failing after 44s

This commit is contained in:
Christoph Haas 2026-02-05 00:26:53 +01:00
parent ec1f333ab8
commit 6fd0ec83e3

View file

@ -14,13 +14,19 @@ jobs:
build:
runs-on: docker
container:
image: docker:24-cli
image: node:22 # Optionally install Docker CLI in a step
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Docker CLI
run: apt-get update && apt-get install -y docker.io
- name: Docker info
run: docker info
- name: Log in to container registry
- name: Log in to registry
run: |
echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login \
-u "${{ secrets.REGISTRY_USER }}" \
@ -32,7 +38,7 @@ jobs:
docker build -t "$CONTAINER_IMAGE" .
docker tag "$CONTAINER_IMAGE" "${{ secrets.REGISTRY_IMAGE }}:latest"
- name: Push Docker images
- name: Push Docker image
run: |
docker push "$CONTAINER_IMAGE"
docker push "${{ secrets.REGISTRY_IMAGE }}:latest"