Skip to content

Commit

Permalink
%2F was the answer all along
Browse files Browse the repository at this point in the history
  • Loading branch information
iodeslykos committed Dec 28, 2023
1 parent 04cbf73 commit f9de2ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/delete-untagged-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
fail-fast: false
matrix:
images:
- image: containers/al2023
- image: containers/alpine
- image: containers/debian
- image: al2023
- image: alpine
- image: debian
steps:
- name: "Delete untagged images."
uses: actions/github-script@v7
with:
script: |
const response = await github.rest.packages.getAllPackageVersionsForPackageOwnedByAuthenticatedUser({
package_type: "container",
package_name: ${{ env.PACKAGE_NAME }},
package_name: "containers%2F${{ env.PACKAGE_NAME }}",
per_page: ${{ env.PER_PAGE }}
});
for(version of response.data) {
Expand Down

0 comments on commit f9de2ba

Please sign in to comment.