feat(workflow): Add GitHub Actions workflow for building latest Docker image

This commit is contained in:
Nicolai Ort 2025-03-22 22:51:27 +01:00
parent ca8373e383
commit 3c0738f11f
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

View File

@ -0,0 +1,27 @@
name: Build latest image
on:
push:
branches:
- main
jobs:
build-container:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to registry
uses: docker/login-action@v3
with:
registry: registry.odit.services
username: ${{ vars.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: |
${{ vars.REGISTRY }}/lfk/docs:latest
platforms: linux/amd64,linux/arm64