Update .gitea/workflows/docker-build.yaml
Publish Docker image / Build and Push Docker image (release) Successful in 1m30s

This commit is contained in:
2026-07-11 18:01:57 +02:00 Unverified
parent 414dbce989
commit d77905844f
+13 -14
View File
@@ -1,40 +1,39 @@
name: Build & Push Docker Image
name: Publish Docker image
on:
release:
types: [published]
env:
REGISTRY: git.stws.cc
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push:
name: Build and Push Docker
push_to_registry:
name: Build and Push Docker image
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout repository
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
registry: git.stws.cc
username: ${{ github.actor }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
- name: Extract metadata (tags, labels)
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
images: git.stws.cc/${{ github.repository }}
tags: |
type=ref,event=tag
type=raw,value=latest
- name: Build and push Docker image
uses: docker/build-push-action@v5
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: .
push: true