Skip to content

Commit 446eda2

Browse files
authored
Merge pull request #11 from postgresml/levkk-fix-workflow-2
default working directory
2 parents 20c7698 + 8a75edf commit 446eda2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
jobs:
88
deploy:
99
runs-on: ubuntu-latest
10+
defaults:
11+
run:
12+
working-directory: pgml
1013
steps:
1114
- uses: actions/checkout@v3
1215
- name: Set up Python
@@ -19,10 +22,8 @@ jobs:
1922
pip install build
2023
- name: Build package
2124
run: python -m build
22-
working-directory: ./pgml
2325
- name: Publish package
2426
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
25-
working-directory: ./pgml
2627
with:
2728
user: __token__
2829
password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)