Files
nodarium/.gitea/workflows/build-ci-image.yaml
Max Richter ac2c61f221
Some checks failed
🚀 Lint & Test & Deploy / release (push) Failing after 2m16s
ci: use actual git url in ci
2026-02-06 12:22:51 +01:00

31 lines
745 B
YAML

name: Build & Push CI Image
on:
push:
paths:
- "Dockerfile.ci"
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Gitea Registry
uses: docker/login-action@v3
with:
registry: git.max-richter.dev
username: ${{ gitea.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.ci
push: true
tags: |
git.max-richter.dev/${{ gitea.repository }}-ci:latest
git.max-richter.dev/${{ gitea.repository }}-ci:${{ github.sha }}