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.
This commit is contained in:
Joe Previte 2021-03-01 15:46:16 -07:00
parent 3e081ea66c
commit 471c6ffd39
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
1 changed files with 3 additions and 0 deletions

View File

@ -48,6 +48,9 @@ jobs:
with: with:
name: test-videos name: test-videos
path: ./test/videos path: ./test/videos
- name: Remove release packages and test artifacts
run: |
rm -rf ./release-packages ./test/videos
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest