From 69268fc3818a24f3b75d2c33c6f70c7f1b8d1a9b Mon Sep 17 00:00:00 2001 From: Jo Zzsi Date: Mon, 21 Oct 2024 22:44:53 -0400 Subject: [PATCH] ci: re-trigger container generation This is only required this one time due to recent container changes. --- .github/workflows/container-extra.yml | 4 ++-- .github/workflows/container.yml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container-extra.yml b/.github/workflows/container-extra.yml index 76f8c9d5c..b2e017836 100644 --- a/.github/workflows/container-extra.yml +++ b/.github/workflows/container-extra.yml @@ -1,6 +1,6 @@ # Containers that takes longer to build or mainline, development, non-stable version of CI containers - name: Container (extra) + on: schedule: - cron: '30 11 * * *' # every day at 11:30 UTC @@ -55,7 +55,7 @@ jobs: with: file: test/container/${{ matrix.config.dockerfile }} tags: ghcr.io/${{env.repository_owner}}/${{ matrix.config.tag }} - push: ${{ github.event_name == 'schedule' }} + push: ${{ github.event_name == 'push' || github.event_name == 'schedule' }} platforms: ${{ matrix.config.platform }} build-args: | DISTRIBUTION=${{ matrix.config.tag }} diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 1b762b077..272b5b979 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -1,4 +1,5 @@ name: Container + on: schedule: - cron: '30 11 * * *' # every day at 11:30 UTC