ci11
Some checks failed
Build and Push Docker Image / build-image (push) Has been cancelled

This commit is contained in:
Patryk Koreń
2026-01-07 21:44:40 +01:00
parent 459174e3c3
commit a116302a10

View File

@@ -12,12 +12,21 @@ jobs:
image: mgoltzsche/podman:5.7.1-minimal
steps:
- name: Install Node.js
run: |
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get update && apt-get install -y nodejs
- name: Checkout code
uses: actions/checkout@v3
- name: Build container image
env:
REGISTRY: https://gitea.papryk.com
IMAGE_NAME: Papryk/dj-spangebob
TAG: ${{ gitea.ref_name }}
run: |
podman build my-image:latest .
podman build "$REGISTRY/$IMAGE_NAME:$TAG" .
- name: Log in to Docker registry
env: