mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-11 04:43:41 -04:00
14 lines
290 B
YAML
14 lines
290 B
YAML
name: Delete old artifacts
|
|
on:
|
|
schedule:
|
|
- cron: '30 10 * * *' # every day at 10:30
|
|
|
|
jobs:
|
|
delete-artifacts:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: kolpav/purge-artifacts-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
expire-in: 21 days
|