From 471c6ffd39cf4e89eb3005f6cca8697e0327d0bd Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 1 Mar 2021 15:46:16 -0700 Subject: [PATCH] fix(ci): remove release and test artifacts as a step This adds a step to remove both the release packages and the test artifacts as a step at the end of test in ci.yaml. --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 838a0ba6..b101b3b2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -48,6 +48,9 @@ jobs: with: name: test-videos path: ./test/videos + - name: Remove release packages and test artifacts + run: | + rm -rf ./release-packages ./test/videos release: runs-on: ubuntu-latest