Skip to content

Commit 8069ffb

Browse files
committed
build: Set a working directory for python-semantic-release
1 parent dc0e817 commit 8069ffb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Python CI
1+
name: Python Semantic Release
22

33
on:
44
push:
@@ -43,20 +43,23 @@ jobs:
4343
github_token: ${{ secrets.GITHUB_TOKEN }}
4444
git_committer_name: "github-actions"
4545
git_committer_email: "[email protected]"
46+
working-directory: './backend'
4647

4748
- name: Publish | Upload to GitHub Release Assets
4849
uses: python-semantic-release/[email protected]
4950
if: steps.release.outputs.released == 'true'
5051
with:
5152
github_token: ${{ secrets.GITHUB_TOKEN }}
5253
tag: ${{ steps.release.outputs.tag }}
54+
working-directory: './backend'
5355

5456
- name: Upload | Distribution Artifacts
5557
uses: actions/upload-artifact@v4
5658
with:
5759
name: distribution-artifacts
5860
path: dist
5961
if-no-files-found: error
62+
working-directory: './backend'
6063

6164
outputs:
6265
released: ${{ steps.release.outputs.released || 'false' }}

0 commit comments

Comments
 (0)