mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
788e843846
Added nightly build workflow for APT Debian prerm script corrected
17 lines
357 B
YAML
17 lines
357 B
YAML
name: Clean artifacts
|
|
|
|
# Run cleanup workflow at the end of every day
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
clean:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: cleanup
|
|
uses: kolpav/purge-artifacts-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
expire-in: 14days # all artifacts at least 14 days old
|