feat(gitea): add workflow_dispatch tag
Some checks failed
Build and Push Docker Image / build (push) Failing after 10s

This commit is contained in:
Pihkaal
2026-02-11 14:24:26 +01:00
parent 7ec02d3dca
commit fedf254100

View File

@@ -4,6 +4,7 @@ on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
@@ -16,6 +17,12 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Check secrets
run: |
echo "Username length: ${#USERNAME}"
echo "Password length: ${#PASSWORD}"
echo "Username first char: ${USERNAME:0:1}"
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
with: