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

This commit is contained in:
Patryk Koreń
2026-01-07 20:32:10 +01:00
parent 3232abab68
commit 30d0485da3

View File

@@ -15,16 +15,15 @@ jobs:
- name: Set up Podman - name: Set up Podman
run: | run: |
export XDG_RUNTIME_DIR=/tmp/run-user
export HOME=/tmp/home
mkdir -p $XDG_RUNTIME_DIR $HOME
# Ensure Podman is installed # Ensure Podman is installed
if ! command -v podman &> /dev/null; then if ! command -v podman &> /dev/null; then
echo "Podman not found, installing..." echo "Podman not found, installing..."
sudo apt-get update && sudo apt-get install -y podman sudo apt-get update && sudo apt-get install -y podman
fi fi
podman --version podman info || true # info will fail if storage driver is overlay, ignore
export XDG_RUNTIME_DIR=/tmp/run-user
export HOME=/tmp/home
mkdir -p $XDG_RUNTIME_DIR $HOME
podman info
- name: Log in to Docker registry - name: Log in to Docker registry