We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c86a376 commit 395b9e4Copy full SHA for 395b9e4
.github/workflows/workflow-package.yml
@@ -102,10 +102,10 @@ jobs:
102
if [[ "$TAG" != "$PROJECT_VERSION" ]]; then exit 1; fi
103
104
- name: Build and publish (dry-run)
105
- run: poetry publish --build --dry-run
+ run: rm -rf dist && poetry publish --build --dry-run
106
107
- name: Build and publish
108
if: startsWith(github.ref, 'refs/tags/')
109
run: |
110
- poetry publish --build
111
- # poetry publish --build -r test-pypi
+ rm -rf dist && poetry publish --build
+ # rm -rf dist && poetry publish --build -r test-pypi
0 commit comments