Skip to content

Commit

Permalink
github actions: try to not use direct path
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Jul 22, 2024
1 parent ade8b35 commit aabeec2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,17 +209,22 @@ jobs:

- name: Move wheelhouse wheel files to dist
run: |
rm dist/*
mv wheelhouse/* dist/
rmdir wheelhouse
- name: List contents of dist
run: ls -R dist

- name: Get the name of the wheel file
id: get-wheel-name
run: echo "::set-output name=wheel-name::$(ls dist/*.whl)"

- name: Archive build artifacts
uses: actions/upload-artifact@v1
with:
name: dist-artifacts-manylinux-${{ matrix.python }}
path: dist/*
path: ${{ steps.get-wheel-name.outputs.wheel-name }}

deploy-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit aabeec2

Please sign in to comment.