From f7eb9113f3b236f3f41b86e22881c706cf02615b Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Mon, 14 Apr 2025 18:24:45 +1000 Subject: [PATCH] Skip date check when release worfklow is manually invoked --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3c6ef7b56..f64f700c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,6 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check for first Saturday of the month + if: ${{ github.event_name != 'workflow_dispatch' }} run: | if (( $(date +%e) > 7 )); then echo "This is not the first Saturday of the month"