Skip to content

.github/workflows/withdraw-images.yaml #18

.github/workflows/withdraw-images.yaml

.github/workflows/withdraw-images.yaml #18

on:
workflow_dispatch:
inputs:
dry_run:
type: boolean
default: 'true'
description: If true, just log
jobs:
withdraw:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: chainguard-dev/actions/setup-chainctl@main
with:
identity: 720909c9f5279097d847ad02a2f24ba8f59de36a/b6461e99e132298f
- uses: imjasonh/setup-crane@00c9e93efa4e1138c9a7a5c594acd6c75a2fbf0c # v0.3
- run: |
for img in $(grep -v '\#' withdrawn-images.txt); do
if [[ "${{ github.event.inputs.dry_run }}" == "false" ]]; then
crane delete $img || true
else
echo "DRY RUN: crane delete $img || true"
fi
done