1
0
mirror of synced 2025-12-30 03:01:36 -05:00

Work around creating tar in scanned directory (#21161)

This commit is contained in:
James M. Greene
2021-08-26 11:36:48 -05:00
committed by GitHub
parent 92513fd9eb
commit fecd0932ef

View File

@@ -90,7 +90,9 @@ jobs:
run: rm -rf script/
- name: Create a gzipped archive
run: tar -czf app.tar.gz ./
run: |
touch app.tar.gz
tar --exclude=app.tar.gz -czf app.tar.gz ./
- name: Install Heroku client development-only dependency
run: npm install --no-save heroku-client