Skip to content

Commit

Permalink
chore(ci): disable pypi test due to maintenance mode
Browse files Browse the repository at this point in the history
  • Loading branch information
heitorlessa committed Mar 1, 2023
1 parent 8bcc629 commit 60cd53a
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
run: |
RELEASE_VERSION="${RELEASE_TAG_VERSION:1}"
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> "$GITHUB_ENV"
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_OUTPUT
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> "$GITHUB_OUTPUT"
- name: Install dependencies
run: make dev
- name: Run all tests, linting and baselines
Expand All @@ -92,12 +92,13 @@ jobs:
- name: Build python package and wheel
if: ${{ !inputs.skip_pypi }}
run: poetry build
- name: Upload to PyPi test
if: ${{ !inputs.skip_pypi }}
run: make release-test
env:
PYPI_USERNAME: __token__
PYPI_TEST_TOKEN: ${{ secrets.PYPI_TEST_TOKEN }}
# March 1st: PyPi test is under maintenance....
# - name: Upload to PyPi test
# if: ${{ !inputs.skip_pypi }}
# run: make release-test
# env:
# PYPI_USERNAME: __token__
# PYPI_TEST_TOKEN: ${{ secrets.PYPI_TEST_TOKEN }}
- name: Upload to PyPi prod
if: ${{ !inputs.skip_pypi }}
run: make release-prod
Expand Down

0 comments on commit 60cd53a

Please sign in to comment.