first commit
All checks were successful
Lint, Build, Scan and Publish Docker Image / build-and-push (push) Successful in 1m4s
All checks were successful
Lint, Build, Scan and Publish Docker Image / build-and-push (push) Successful in 1m4s
This commit is contained in:
42
.gitea/workflows/publish-docker.yml
Normal file
42
.gitea/workflows/publish-docker.yml
Normal 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
|
||||
Reference in New Issue
Block a user