Files
papermc-extra/.gitea/workflows/publish-docker.yml
Arne Baeumler 83df2b1c62
All checks were successful
Lint, Build, Scan and Publish Docker Image / build-and-push (push) Successful in 1m4s
first commit
2026-02-13 20:13:09 +01:00

43 lines
1.0 KiB
YAML

---
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