netmaker/.github/workflows/purgeGHCR.yml
Matthew R. Kasun eb2e9958b7 add ee build to docker-publish workflow and ...
updated actions to latest versions
2022-11-10 10:52:44 -05:00

29 lines
800 B
YAML

name: Purge untagged images from GHCR
on:
workflow_dispatch:
schedule:
- cron: '1 1 1 * *'
jobs:
purge:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Prune Netmaker
uses: vlaurin/action-ghcr-prune@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
organization: gravitl
container: netmaker
dry-run: false # Dry-run first, then change to `false`
untagged: true
- name: Prune Netclient
uses: vlaurin/action-ghcr-prune@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
organization: gravitl
container: netclient
dry-run: false # Dry-run first, then change to `false`
untagged: true