mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-26 13:26:22 +02:00
github-actions: update deploy to explore artifacts
This commit is contained in:
parent
180b29e2c7
commit
6bb610e5cb
1 changed files with 12 additions and 5 deletions
17
.github/workflows/deploy.yml
vendored
17
.github/workflows/deploy.yml
vendored
|
|
@ -118,7 +118,7 @@ jobs:
|
|||
- name: Archive build artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: wheelhouse-artifacts
|
||||
name: wheelhouse-artifacts-linux
|
||||
path: wheelhouse
|
||||
|
||||
deploy:
|
||||
|
|
@ -138,14 +138,21 @@ jobs:
|
|||
pip install --upgrade pip
|
||||
pip install twine
|
||||
|
||||
- name: Download build artifacts
|
||||
- name: Download linux build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: wheelhouse
|
||||
# merge-multiple: true
|
||||
name: wheelhouse-artifacts-linux
|
||||
path: wheelhouse-linux
|
||||
|
||||
- name: Download windows and mac build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: dist
|
||||
|
||||
- name: Inspect wheelhouse files
|
||||
run: ls -R wheelhouse
|
||||
run: |
|
||||
ls -R wheelhouse-linux
|
||||
ls -R dist
|
||||
|
||||
# - name: Upload to PyPI using twine
|
||||
# run: twine upload --skip-existing wheelhouse/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue