Skip to content

Commit a40de24

Browse files
anihamdeani
andauthored
fix workflow (#1364)
* fix workflow * use 'working-directory' tag * install and build --------- Co-authored-by: ani <[email protected]>
1 parent a007a08 commit a40de24

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/pypi-express-relay-utils.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ jobs:
1414
- name: Install dependencies
1515
run: |
1616
python3 -m pip install --upgrade poetry
17-
poetry -C express_relay/sdk/python/express_relay build
17+
poetry install
18+
working-directory: "express_relay/sdk/python/express_relay"
1819
- name: Build and publish
1920
run: |
20-
poetry -C express_relay/sdk/python/express_relay build
21-
poetry -C express_relay/sdk/python/express_relay publish --username __token__ --password ${{ secrets.PYPI_TOKEN }}
21+
poetry build
22+
poetry publish --username __token__ --password ${{ secrets.PYPI_TOKEN }}
23+
working-directory: "express_relay/sdk/python/express_relay"

0 commit comments

Comments
 (0)