upd
Some checks failed
Deploy Gitea Custom / build-and-deploy (push) Failing after 42s

This commit is contained in:
Pasha 2025-08-25 10:51:49 +03:00
parent 8d7d4a4469
commit f850bb49d9

@ -10,6 +10,7 @@ env:
GITEA_VERSION: deploy_custom
CONTAINER_NAME: gitea-production
VOLUME_NAME: gitea_data
STORAGE_DRIVER: vfs
jobs:
build-and-deploy:
@ -30,12 +31,10 @@ jobs:
- name: Build container image
run: |
PODMAN_SYSTEM_STORAGE_OPTIONS="--storage-driver=vfs" \
podman build \
--storage-driver=vfs \
--build-arg GITEA_VERSION=${{ env.GITEA_VERSION }} \
-t gitea-custom:${{ github.sha }} \
-t gitea-custom:latest .
podman --storage-driver=$STORAGE_DRIVER build \
--build-arg GITEA_VERSION=${{ env.GITEA_VERSION }} \
-t gitea-custom:${{ github.sha }} \
-t gitea-custom:latest .
- name: Stop existing container
run: |