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 0679110 commit d66456bCopy full SHA for d66456b
.github/workflows/deleteOldReleases.yml
@@ -9,8 +9,7 @@ jobs:
9
delete_release_assets:
10
runs-on: ubuntu-24.04
11
permissions:
12
- contents: read
13
- packages: write
+ contents: write
14
steps:
15
- name: Delete old release assets
16
# To use GitHub CLI in a GitHub Actions workflow, set the GH_TOKEN environment variable
@@ -32,4 +31,4 @@ jobs:
32
31
# Select assets older than the cutoff
33
select((.createdAt | fromdateiso8601) < $cutoff) |
34
.name
35
- ' | xargs -r gh release delete-asset dev-wheels
+ ' | xargs -r -I {} gh release delete-asset dev-wheels {} --repo ${{ github.repository }}
0 commit comments