From 0d3d5d5b36ba2bc3883091643059d9b2d194d7c4 Mon Sep 17 00:00:00 2001 From: Job79 Date: Sun, 28 Dec 2025 11:04:33 +0100 Subject: [PATCH] ci: add manual trigger --- .gitea/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a78ee85..311bea9 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,5 +1,6 @@ name: Build containers on: + workflow_dispatch: push: branches: ["main"] paths: ["containers/**", ".gitea/workflows/build.yaml"] @@ -16,7 +17,7 @@ jobs: fedora: ${{ steps.filter.outputs.fedora == 'true' }} infra: ${{ steps.filter.outputs.infra == 'true' || steps.filter.outputs.fedora == 'true' }} go: ${{ steps.filter.outputs.go == 'true' || steps.filter.outputs.fedora == 'true' }} - any_change: ${{ steps.filter.outputs.workflow == 'true' || github.event_name == 'schedule' }} + any_change: ${{ steps.filter.outputs.workflow == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}} steps: - uses: actions/checkout@v4 - uses: https://github.com/dorny/paths-filter@v3