Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b0eddb4

Browse files
authored
workflows/release-binaries: Run this job once a week to catch regressions (#176008)
This will increase the chances that we can have this job working for the first release candidate.
1 parent 38be580 commit b0eddb4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release-binaries-all.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ permissions:
44
contents: read # Default everything to read-only
55

66
on:
7+
schedule:
8+
- cron: "0 0 * * 6"
79
workflow_dispatch:
810
inputs:
911
release-version:
@@ -67,7 +69,7 @@ jobs:
6769
run: |
6870
upload="${{ inputs.upload }}"
6971
release_version="${{ inputs.release-version }}"
70-
if [ "${{ github.event_name }}" = "pull_request" ]; then
72+
if [ "${{ github.event_name }}" = "pull_request" ] || [ "${{ github.event_name }}" = "schedule" ]; then
7173
upload="false"
7274
release_version=""
7375
fi

0 commit comments

Comments
 (0)