Skip to content

Commit

Permalink
Merge pull request #38 from nathanielvarona/automation/define-dist-di…
Browse files Browse the repository at this point in the history
…rectory-on-publish

Define Dist Directory on Publish
  • Loading branch information
nathanielvarona committed May 4, 2024
2 parents 6c084ec + ad96ae8 commit 9df6cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
- name: Build the Package
run: |
# Build the Package
poetry build --output=./dist
poetry build --output ./dist
- name: Publish the Package to PyPI
run: |
# Publish the Package to PyPI
poetry publish --repository pypi
poetry publish --dist-dir ./dist --repository pypi
- name: Upload as Release Assets
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 9df6cf7

Please sign in to comment.