Initial commit

This commit is contained in:
Caesar2011
2026-05-18 18:25:58 +02:00
commit f10553852c
6 changed files with 228 additions and 0 deletions

20
docker-login/action.yml Normal file
View File

@@ -0,0 +1,20 @@
name: Docker Login
description: Login to git.sebse.de container registry
inputs:
username:
description: Registry username
required: true
password:
description: Registry password or token
required: true
runs:
using: composite
steps:
- name: Login to registry
uses: docker/login-action@v3
with:
registry: git.sebse.de
username: ${{ inputs.username }}
password: ${{ inputs.password }}