pki-manager/.gitea/workflows/build.yml

21 lines
555 B
YAML

name: Build
on: [push]
jobs:
build-and-push-image:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to registry
uses: docker/login-action@v3
with:
registry: gitea.bv.stef.lan
username: stef
password: stef
- name: Build and push image
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ gitea.bv.stef.lan }}/pki-manager:${{ gitea.ref }}