mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-07-23 17:01:06 +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
|
- name: Extract tar.gz files
|
||||||
run: |
|
run: |
|
||||||
for artifact in dist/*; do
|
for artifact in dist/*; do
|
||||||
tar -xzf "$artifact" -C dist
|
if [[ "$artifact" == *.tar.gz ]]; then
|
||||||
rm "$artifact"
|
tar -xzf "$artifact" -C dist
|
||||||
|
rm "$artifact"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
- name: Inspect wheel files
|
||||||
|
run: |
|
||||||
|
ls -R dist
|
||||||
|
|
||||||
- name: Move files from subdirectories
|
- name: Move files from subdirectories
|
||||||
run: |
|
run: |
|
||||||
for subdirectory in dist/*/; do
|
for subdirectory in dist/*/; do
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue