fixed runner
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 0s

This commit is contained in:
Richard Mrasek
2026-06-11 15:25:54 +02:00
parent f1cfc8fa83
commit 89601cedeb

View File

@@ -13,8 +13,14 @@ jobs:
REGISTRY: gitea.dataprovider01.sandbox-cat-dat.simpl-europe.eu REGISTRY: gitea.dataprovider01.sandbox-cat-dat.simpl-europe.eu
IMAGE_REPO: gitea.dataprovider01.sandbox-cat-dat.simpl-europe.eu/j.r/template-code-location IMAGE_REPO: gitea.dataprovider01.sandbox-cat-dat.simpl-europe.eu/j.r/template-code-location
steps: steps:
- name: Checkout - name: Validate workspace
uses: actions/checkout@v4 run: |
pwd
ls -la
if [ ! -f "Dockerfile" ]; then
echo "Dockerfile not found in workspace. Configure runner to provide repository checkout."
exit 1
fi
- name: Validate registry secrets - name: Validate registry secrets
run: | run: |