add tags to docker images and cleanup workflow #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clean git container registry | ||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [ created ] # Runs only when a new release is created | ||
jobs: | ||
- name: ghcr.io cleanup action | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dataaxiom/ghcr-cleanup-action@v1 | ||
with: | ||
delete-untagged: true | ||
token: ${{ secrets.GITHUB_TOKEN }} |