# .gitea/workflows/publish.yml name: Publish Action Image on: push: branches: [main] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Build and push action image run: | docker build -t registry.container-registry.svc.cluster.local:5000/infra/kforge:latest . docker push registry.container-registry.svc.cluster.local:5000/infra/kforge:latest