Skip to content

Commit

Permalink
Remove debugging for uploading to pypi (#736)
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored May 25, 2022
1 parent c14f819 commit 2ae871f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
push:
tags: # run only on new tags that follow semver MAJOR.MINOR.PATCH
- '[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:

jobs:
deploy-release:
Expand Down Expand Up @@ -40,11 +39,12 @@ jobs:
run: |
tox -e wheelinstall --recreate --installpkg dist/*-none-any.whl
- name: Upload wheel and source distributions to PyPI # TODO remove the --repository flag after testing
- name: Upload wheel and source distributions to PyPI
run: |
python -m pip install twine
ls -1 dist
twine upload --repository testpypi -u ${{ secrets.BOT_PYPI_USER }} -p ${{ secrets.BOT_PYPI_PASSWORD }} --skip-existing dist/*
# twine upload --repository testpypi -u ${{ secrets.BOT_PYPI_USER }} -p ${{ secrets.BOT_PYPI_PASSWORD }} --skip-existing dist/*
twine upload -u ${{ secrets.BOT_PYPI_USER }} -p ${{ secrets.BOT_PYPI_PASSWORD }} --skip-existing dist/*
- name: Publish wheel and source distributions as a GitHub release
run: |
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# HDMF Changelog

## HDMF 3.3.1 (May 20, 2022)

### Bug fixes
- Fixed release deployment CI. @rly (#734, #735, #736)

## HDMF 3.3.0 (May 18, 2022)

### New features
Expand Down

0 comments on commit 2ae871f

Please sign in to comment.