Skip to content

Commit 49115ef

Browse files
committed
fix working directory in uv build
1 parent fd01f1a commit 49115ef

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@ jobs:
102102
url: https://pypi.org/p/federated-collection-discovery
103103
permissions:
104104
id-token: write
105+
defaults:
106+
run:
107+
working-directory: src/server
105108
steps:
106109
- name: Check out repository
107110
uses: actions/checkout@v4
@@ -119,7 +122,6 @@ jobs:
119122
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
120123

121124
- name: Set module version
122-
working-directory: src/server
123125
id: module
124126
run: echo "version=$(python federated_collection_discovery/__init__.py)" >> $GITHUB_ENV
125127

@@ -132,4 +134,4 @@ jobs:
132134
if: env.tag == env.version
133135
uses: pypa/gh-action-pypi-publish@release/v1
134136
with:
135-
packages-dir: dist/
137+
packages-dir: src/server/dist/

0 commit comments

Comments
 (0)