Skip to content

Commit

Permalink
experiment with artifact download
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonieFierz committed Jan 3, 2025
1 parent 1fb8cf4 commit 252ca9b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/pyhton.build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,20 @@ jobs:
id-token: write
needs: ["py3p8_linux_sdist", "build"]
steps:
- name: check artifacts before anything else...
run: |
cd python-wrapper/dist
ls build-examples:
- name: download python source dist artifacts
uses: actions/download-artifact@v4
with:
path: python-wrapper/dist
merge-multiple: true
name: py_source_dist
- name: check artifacts after sdist download
run: |
cd python-wrapper/dist
ls -al
- name: download python build artifacts
uses: actions/download-artifact@v4
with:
Expand All @@ -179,7 +187,7 @@ jobs:
- name: check artifacts
run: |
cd python-wrapper/dist
ls
ls -al
#- name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
Expand All @@ -198,6 +206,7 @@ jobs:
working-directory: ./python-wrapper
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: download python source dist artifacts
Expand All @@ -210,7 +219,7 @@ jobs:
uses: actions/download-artifact@v4
with:
path: python-wrapper/dist
merge-multiple: true
merge-multiple: false
pattern: py_*_build
- name: Create GitHub Release
env:
Expand Down

0 comments on commit 252ca9b

Please sign in to comment.