Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38be580 commit b0eddb4Copy full SHA for b0eddb4
1 file changed
.github/workflows/release-binaries-all.yml
@@ -4,6 +4,8 @@ permissions:
4
contents: read # Default everything to read-only
5
6
on:
7
+ schedule:
8
+ - cron: "0 0 * * 6"
9
workflow_dispatch:
10
inputs:
11
release-version:
@@ -67,7 +69,7 @@ jobs:
67
69
run: |
68
70
upload="${{ inputs.upload }}"
71
release_version="${{ inputs.release-version }}"
- if [ "${{ github.event_name }}" = "pull_request" ]; then
72
+ if [ "${{ github.event_name }}" = "pull_request" ] || [ "${{ github.event_name }}" = "schedule" ]; then
73
upload="false"
74
release_version=""
75
fi
0 commit comments