Skip to content

Commit

Permalink
fix indentation in deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RMeli committed Jul 30, 2022
1 parent dbd1a13 commit 084c59c
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,24 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install Dependencies
shell: bash
run: |
python -m pip install build
- name: Build Package
shell: bash
run: |
python -m build --sdist --wheel --outdir dist/
- name: Publish on TestPyPI
# Upload to testpypi on every tag
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TESTPYPI_PWD }}
repository_url: https://test.pypi.org/legacy/
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install Dependencies
shell: bash
run: |
python -m pip install build
- name: Build Package
shell: bash
run: |
python -m build --sdist --wheel --outdir dist/
- name: Publish on TestPyPI
# Upload to testpypi on every tag
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TESTPYPI_PWD }}
repository_url: https://test.pypi.org/legacy/

0 comments on commit 084c59c

Please sign in to comment.