first commit
All checks were successful
Lint, Build, Scan and Publish Docker Image / build-and-push (push) Successful in 1m4s

This commit is contained in:
2026-02-13 20:13:09 +01:00
commit 83df2b1c62
3 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
---
name: Lint, Build, Scan and Publish Docker Image
on:
push:
branches:
- main
tags:
- 'v*'
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to Container Registry
uses: docker/login-action@v3
with:
registry: registry.br0tkasten.de
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: registry.br0tkasten.de/${{ gitea.repository }}
flavor: |
latest=true
tags: |
type=sha,format=short
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
provenance: false
push-args: --provenance=false