We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3da22b commit 7ad3a9dCopy full SHA for 7ad3a9d
.github/workflows/deleteOldReleases.yml
@@ -4,6 +4,7 @@ on:
4
schedule:
5
- cron: '0 10 * * *' # Daily at 10:00 UTC which is 2:00 AM PST (UTC-8)
6
workflow_dispatch:
7
+ push:
8
9
jobs:
10
delete_release_assets:
@@ -21,7 +22,7 @@ jobs:
21
22
run: |
23
24
# Define 60 days in seconds (60 * 24 * 60 * 60 = 5184000)
- 60_DAYS_IN_SECONDS=5184000
25
+ set 60_DAYS_IN_SECONDS=5184000
26
27
# Find assets older than 60 days in the 'dev-wheels' release and pipe their names to xargs for deletion.
28
gh release view dev-wheels --json assets | \
0 commit comments