forked from sync/gitea-docker-registry-prune
23 lines
433 B
YAML
23 lines
433 B
YAML
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
remove-orphans:
|
|
name: Remove Orphans
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
cache: false
|
|
go-version-file: 'go.mod'
|
|
|
|
- env:
|
|
GITEA_URL: https://git.furtherverse.com
|
|
GITEA_TOKEN: ${{ secrets.TOKEN }}
|
|
run: |
|
|
go run .
|