mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-25 12:56:22 +02:00
update handling of tar files in deploy-test
This commit is contained in:
parent
b9084f3f37
commit
95a3484944
1 changed files with 8 additions and 2 deletions
10
.github/workflows/test-and-deploy.yml
vendored
10
.github/workflows/test-and-deploy.yml
vendored
|
|
@ -272,10 +272,16 @@ jobs:
|
|||
- name: Extract tar.gz files
|
||||
run: |
|
||||
for artifact in dist/*; do
|
||||
tar -xzf "$artifact" -C dist
|
||||
rm "$artifact"
|
||||
if [[ "$artifact" == *.tar.gz ]]; then
|
||||
tar -xzf "$artifact" -C dist
|
||||
rm "$artifact"
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Inspect wheel files
|
||||
run: |
|
||||
ls -R dist
|
||||
|
||||
- name: Move files from subdirectories
|
||||
run: |
|
||||
for subdirectory in dist/*/; do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue