Files
dev aa4098cfbf
Build & Push / build (push) Failing after 12s
fix: lowercase registry path
2026-06-07 12:00:37 +02:00

21 lines
560 B
YAML

name: Build & Push
on:
push:
branches: [main]
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout
run: git clone https://gitea.it-microevo.com/Dev/k8s-pilot.git .
- 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