Skip to content

Commit

Permalink
Adding artifact cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-insolia-cko committed Nov 27, 2023
1 parent 7bd2177 commit a108647
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cleanup-artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Generated APK Clean

on:
workflow_dispatch:

schedule:
# Every Monday at 1am
- cron: '0 1 * * 1'

jobs:
remove-old-artifacts:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: Clean all artifacts
uses: c-hive/gha-remove-artifacts@v1
with:
age: '60 seconds'

0 comments on commit a108647

Please sign in to comment.