mirror of
https://github.com/niess/python-appimage.git
synced 2025-07-21 12:51:16 +02:00
14 lines
279 B
YAML
14 lines
279 B
YAML
name: Delete artifacts
|
|
on:
|
|
schedule:
|
|
- cron: '0 */6 * * *' # every 6 hours
|
|
|
|
jobs:
|
|
delete-artifacts:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: kolpav/purge-artifacts-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
expire-in: 0days
|