ci: add manual trigger
All checks were successful
Build containers / changes (push) Successful in 11s
Build containers / base-image (push) Successful in 1m15s
Build containers / dependent-images (go) (push) Successful in 47s
Build containers / dependent-images (infra) (push) Successful in 1m1s

This commit is contained in:
Job
2025-12-28 11:04:33 +01:00
parent 8bde490c6d
commit 0d3d5d5b36

View File

@@ -1,5 +1,6 @@
name: Build containers name: Build containers
on: on:
workflow_dispatch:
push: push:
branches: ["main"] branches: ["main"]
paths: ["containers/**", ".gitea/workflows/build.yaml"] paths: ["containers/**", ".gitea/workflows/build.yaml"]
@@ -16,7 +17,7 @@ jobs:
fedora: ${{ steps.filter.outputs.fedora == 'true' }} fedora: ${{ steps.filter.outputs.fedora == 'true' }}
infra: ${{ steps.filter.outputs.infra == 'true' || 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' }} 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: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: https://github.com/dorny/paths-filter@v3 - uses: https://github.com/dorny/paths-filter@v3