Skip to content

Commit

Permalink
ci: add dev{pr_number} to wheel artifact filename
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Nov 16, 2023
1 parent c6ef0b5 commit b2e059b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
- run: |
PR_NUMBER=${{ github.event.pull_request.number }}
WHL_FILE=$(ls dist/*.whl)
NEW_NAME="${WHL_FILE/-py3-none-any/-pr-${PR_NUMBER}}"
NEW_NAME="${WHL_FILE/-py3-none-any/dev${PR_NUMBER}-py3-none-any}"
mv "$WHL_FILE" "$NEW_NAME"
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit b2e059b

Please sign in to comment.