Skip to content

Commit 07ae7b6

Browse files
chord: rename build-test.yml to build.yml
1 parent c363fa6 commit 07ae7b6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Test
1+
name: Build
22

33
on:
44
workflow_dispatch:
@@ -99,7 +99,7 @@ jobs:
9999
- name: Build ${{ matrix.project }}
100100
run: |
101101
echo "Building netdriver-${{ matrix.project }}..."
102-
poetry build-project -P projects/${{ matrix.project }} --format wheel --clean
102+
poetry build-project -C projects/${{ matrix.project }} --format wheel --clean
103103
104104
- name: Check package metadata
105105
run: |

.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ jobs:
7979
if [ "$TARGET" = "testpypi" ]; then
8080
echo "Publishing $project to TestPyPI..."
8181
poetry config pypi-token.testpypi "$TESTPYPI_TOKEN"
82-
poetry publish -P "projects/$project" -r testpypi --skip-existing
82+
poetry publish -C "projects/$project" -r testpypi --skip-existing
8383
else
8484
echo "Publishing $project to PyPI..."
8585
poetry config pypi-token.pypi "$PYPI_TOKEN"
86-
poetry publish -P "projects/$project" --skip-existing
86+
poetry publish -C "projects/$project" --skip-existing
8787
fi
8888
8989
echo "✓ Successfully published $project to $TARGET"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
run: |
132132
poetry config pypi-token.pypi "$PYPI_TOKEN"
133133
echo "Publishing netdriver-${{ matrix.project }} to PyPI..."
134-
poetry publish -P projects/${{ matrix.project }} --skip-existing
134+
poetry publish -C projects/${{ matrix.project }} --skip-existing
135135
136136
- name: Upload wheel to release
137137
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)