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