Skip to content

Commit 908964c

Browse files
committed
better indentation
1 parent e67ffe3 commit 908964c

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/publish.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,28 @@
77
name: Upload Python Package
88

99
on:
10-
release:
11-
types: [created]
10+
release:
11+
types: [created]
1212

1313
jobs:
14-
deploy:
14+
deploy:
1515

16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-latest
1717

18-
steps:
19-
- uses: actions/checkout@v2
20-
- name: Set up Python
21-
uses: actions/setup-python@v2
22-
with:
23-
python-version: 3.x
24-
- name: Install dependencies
25-
run: |
26-
python -m pip install --upgrade pip
27-
pip install setuptools wheel twine
28-
- name: Build and publish
29-
env:
30-
TWINE_USERNAME: __token__
31-
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
32-
run: |
33-
python setup.py sdist bdist_wheel
34-
twine upload dist/*
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Set up Python
21+
uses: actions/setup-python@v2
22+
with:
23+
python-version: 3.x
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install setuptools wheel twine
28+
- name: Build and publish
29+
env:
30+
TWINE_USERNAME: __token__
31+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
32+
run: |
33+
python setup.py sdist bdist_wheel
34+
twine upload dist/*

0 commit comments

Comments
 (0)