mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-10 05:15:35 +08:00
0b67cc7021
Signed-off-by: Larvan2 <78135608+Larvan2@users.noreply.github.com>
17 lines
361 B
YAML
17 lines
361 B
YAML
name: clean old package
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
del_runs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/delete-package-versions@v4
|
|
with:
|
|
package-name: 'metacubexd'
|
|
package-type: 'container'
|
|
min-versions-to-keep: 3
|
|
delete-only-untagged-versions: 'true'
|