From 83ef466ee10780f3cf25e4a9cacface381b9b743 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 8 Nov 2024 13:16:13 -0800 Subject: [PATCH] fix(ci): check out repo if event_name is schedule --- .github/workflows/container.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yaml index 14c9e6a22..41dd97438 100644 --- a/.github/workflows/container.yaml +++ b/.github/workflows/container.yaml @@ -45,7 +45,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v4 - if: github.event_name == 'push' + if: github.event_name == 'push' || github.event_name == 'schedule' - name: Build and push if: ${{ github.event_name == 'schedule' && env.GH_CR_PAT != null }}