forked from sync/gitea-docker-registry-prune
21 lines
412 B
YAML
21 lines
412 B
YAML
name: Remove Orphans
|
|
|
|
on:
|
|
# push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
remove-orphans:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '>=1.23.4'
|
|
|
|
- env:
|
|
TOKEN: ${{ secrets.TOKEN }}
|
|
run: |
|
|
GITEA_URL=https://git.furtherverse.com GITEA_TOKEN=${TOKEN} ./gitea-docker-registry-prune go run .
|