From: Benjamin Drung Date: Sun, 8 Feb 2026 01:01:53 +0000 (+0100) Subject: ci: also run container manifest step for by workflow_dispatch X-Git-Tag: 110~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=310af45d3f59d06e9223266b9faefb8c4f9470dc;p=thirdparty%2Fdracut-ng.git ci: also run container manifest step for by workflow_dispatch The container CI jobs might be run manually (using the `workflow_dispatch` trigger). In this case the `manifest` step is skipped. This makes manually runnings the container job useless. Also run the container manifest step for `workflow_dispatch`. --- diff --git a/.github/workflows/container-extra.yml b/.github/workflows/container-extra.yml index ac80c4761..53d5c5c1f 100644 --- a/.github/workflows/container-extra.yml +++ b/.github/workflows/container-extra.yml @@ -77,7 +77,7 @@ jobs: OPTION=${{ matrix.config.option }} manifest: needs: container-extra - if: github.event_name == 'push' || github.event_name == 'schedule' + if: github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' name: ${{ matrix.config.tag }} concurrency: group: manifest-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }} diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 8ad9598d1..e2a018c1e 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -75,7 +75,7 @@ jobs: OPTION=${{ matrix.config.option }} manifest: needs: container - if: github.event_name == 'push' || github.event_name == 'schedule' + if: github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' name: ${{ matrix.config.tag }} concurrency: group: manifest-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}