Skip to content

Commit d5f0038

Browse files
committed
fix: indentation
1 parent aa53c5e commit d5f0038

File tree

1 file changed

+27
-23
lines changed

1 file changed

+27
-23
lines changed

.github/workflows/release.yml

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,36 @@ jobs:
1414
contents: write
1515

1616
steps:
17-
- uses: actions/checkout@v3
18-
with:
19-
fetch-depth: 0
17+
- uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 0
2020

21-
- name: Python Semantic Release
22-
uses: python-semantic-release/python-semantic-release@master
23-
with:
24-
github_token: ${{ secrets.GH_TOKEN }}
21+
- name: Python Semantic Release
22+
uses: python-semantic-release/python-semantic-release@master
23+
with:
24+
github_token: '${{ secrets.GH_TOKEN }}'
2525

2626
upload-to-pypi:
2727
runs-on: ubuntu-latest
2828

2929
steps:
30-
- uses: actions/checkout@v3
31-
- name: Set up Python
32-
uses: actions/setup-python@v3
33-
with:
34-
python-version: '3.x'
35-
- name: Install dependencies
36-
run: |
37-
python -m pip install --upgrade pip
38-
pip install build
39-
- name: Build package
40-
run: python -m build
41-
- name: Publish package
42-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
43-
with:
44-
user: __token__
45-
password: ${{ secrets.PYPI_API_TOKEN }}
30+
- uses: actions/checkout@v3
31+
32+
- name: Set up Python
33+
uses: actions/setup-python@v3
34+
with:
35+
python-version: 3.x
36+
37+
- name: Install dependencies
38+
run: |
39+
python -m pip install --upgrade pip
40+
pip install build
41+
42+
- name: Build package
43+
run: python -m build
44+
45+
- name: Publish package
46+
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
47+
with:
48+
user: __token__
49+
password: '${{ secrets.PYPI_API_TOKEN }}'

0 commit comments

Comments
 (0)