CI: gate builds + pushes app image to Gitea registry tagged with the commit hash
CI / full-gate (push) Failing after 2m28s

This commit is contained in:
2026-07-03 16:39:57 +02:00
parent 6e60df7008
commit 50beed4c02
3 changed files with 31 additions and 3 deletions
+12
View File
@@ -9,3 +9,15 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- run: bash ci.sh
- name: Push app image tagged with the commit hash
env:
IMAGE: gitea.larvit.se/${{ github.repository }}:${{ github.sha }}
REGISTRY_TOKEN: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }}
run: |
printf '%s' "$REGISTRY_TOKEN" | docker login gitea.larvit.se -u "$REGISTRY_USER" --password-stdin
docker build -t "$IMAGE" .
docker push "$IMAGE"
- name: Log out of the registry
if: always()
run: docker logout gitea.larvit.se