Update for Season 2026
Some checks failed
Build Formula12 Docker Image / pocketbase-docker (push) Failing after 6s

This commit is contained in:
2026-02-15 00:05:58 +01:00
parent ba307eb4c4
commit a14ab5e170
7 changed files with 82 additions and 98 deletions

View File

@ -0,0 +1,25 @@
name: Build Formula12 Docker Image
on:
push:
branches: [master]
# paths:
# - ".gitea/workflows/pocketbase-docker.yaml"
# - "pocketbase.dockerfile"
jobs:
pocketbase-docker:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to container registry
uses: docker/login-action@v3
with:
registry: gitea.vps.chriphost.de
username: ${{ secrets.CONTAINER_REGISTRY_USER }}
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
- name: Build Formula12 Docker Image
run: docker build --file formula12.dockerfile --tag gitea.vps.chriphost.de/christoph/formula12:latest .
- name: Push Formula12 Docker Image
run: docker push gitea.vps.chriphost.de/christoph/formula12:latest