Files
k8s-pilot/.gitea/workflows/build.yml
T
dev d8f2e2dbb0
Build & Push / build (push) Failing after 11s
fix: runner ohne container spec
2026-06-07 11:21:21 +02:00

20 lines
498 B
YAML

name: Build & Push
on:
push:
branches: [main]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Login to Gitea Registry
run: echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login gitea.it-microevo.com -u "${{ secrets.REGISTRY_USER }}" --password-stdin
- name: Build & Push
run: |
docker build -t gitea.it-microevo.com/Dev/k8s-pilot:latest .
docker push gitea.it-microevo.com/Dev/k8s-pilot:latest