Skip to content

Commit

Permalink
💚 Fix indentation error
Browse files Browse the repository at this point in the history
  • Loading branch information
klieret committed Nov 4, 2022
1 parent 3881745 commit dfe0bf9
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ jobs:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Build sdist and wheel
run: pipx run build
- name: Build sdist and wheel
run: pipx run build

- uses: actions/upload-artifact@v3
with:
path: dist
- uses: actions/upload-artifact@v3
with:
path: dist

- name: Check products
run: pipx run twine check dist/*
- name: Check products
run: pipx run twine check dist/*

- uses: pypa/[email protected]
if: github.event_name == 'release' && github.event.action == 'published'
with:
# Remember to generate this and set it in "GitHub Secrets"
password: ${{ secrets.pypi_password }}
# Remove this line
repository_url: https://test.pypi.org/legacy/
- uses: pypa/[email protected]
if: github.event_name == 'release' && github.event.action == 'published'
with:
# Remember to generate this and set it in "GitHub Secrets"
password: ${{ secrets.pypi_password }}
# Remove this line
repository_url: https://test.pypi.org/legacy/

0 comments on commit dfe0bf9

Please sign in to comment.