Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docker-workflow): Refactor out docker publish from build and test #4950

Merged
18 changes: 18 additions & 0 deletions .github/workflows/delete-artifacts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Remove old artifacts

on:
schedule:
# Every day at 1am
- cron: '0 * * * *'
workflow_dispatch:

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

steps:
- name: Remove old artifacts
uses: c-hive/gha-remove-artifacts@v1
with:
age: '1 second'
Loading