Skip to content

Commit 2ec0a57

Browse files
committed
Fix release-deploy workflow
- uses supported action - use correct path
1 parent c5f21e3 commit 2ec0a57

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/release-deploy.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v2
18-
with:
19-
path: main
2018

2119
- name: Set up Python ${{ matrix.python-version }}
2220
uses: actions/setup-python@v2
@@ -27,11 +25,10 @@ jobs:
2725
run: |
2826
python -m pip install --upgrade pip
2927
python -m pip install build
30-
cd main
3128
python -m build
3229
3330
- name: Publish package to PyPI
34-
uses: pypa/gh-action-pypi-publish@master
31+
uses: pypa/gh-action-pypi-publish@release/v1
3532
with:
3633
user: __token__
3734
password: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)