Skip to content

Commit 5fa112e

Browse files
committed
Fix indentation
1 parent d16e2fd commit 5fa112e

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Diff for: .github/workflows/pypi-publish.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- name: Install Poetry
14-
run: pipx install poetry
15-
- name: Add PyPi token to Poetry
16-
run: poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
17-
- name: Set up Python
18-
uses: actions/setup-python@v5
19-
with:
20-
python-version: 3.11
21-
cache: "poetry"
22-
- name: Install Dependencies
23-
run: poetry install
24-
- name: Publish package
25-
run: poetry publish --build
12+
- uses: actions/checkout@v4
13+
- name: Install Poetry
14+
run: pipx install poetry
15+
- name: Add PyPi token to Poetry
16+
run: poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
17+
- name: Set up Python
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: 3.11
21+
cache: "poetry"
22+
- name: Install Dependencies
23+
run: poetry install
24+
- name: Publish package
25+
run: poetry publish --build

0 commit comments

Comments
 (0)