Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
git_committer_name: "github-actions"
git_committer_email: "[email protected]"
working-directory: './backend'
directory: './backend'

- name: Publish | Upload to GitHub Release Assets
uses: python-semantic-release/[email protected]
Expand All @@ -57,9 +57,8 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: distribution-artifacts
path: dist
path: backend/dist
if-no-files-found: error
working-directory: './backend'

outputs:
released: ${{ steps.release.outputs.released || 'false' }}
Expand All @@ -83,11 +82,11 @@ jobs:
id: artifact-download
with:
name: distribution-artifacts
path: dist
path: backend/dist

- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist
packages-dir: backend/dist
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}