Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer authored May 29, 2024
2 parents 9473ea8 + 5c612cb commit 616a0d8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/publish_on_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
python -m build
twine check dist/*
conda deactivate
conda env remove --name alphadia_build -y
- name: Publish distribution to Test-PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand All @@ -63,6 +64,7 @@ jobs:
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple "alphadia==${{ steps.get_current_version.outputs.new_version }}"
alphadia -v
conda deactivate
conda env remove --name pip_stable_test -y
- name: Test Test-PyPI stable installation
shell: bash -le {0}
run: |
Expand All @@ -71,6 +73,7 @@ jobs:
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple "alphadia[stable]==${{ steps.get_current_version.outputs.new_version }}"
alphadia -v
conda deactivate
conda env remove --name pip_stable_test -y
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down Expand Up @@ -105,6 +108,7 @@ jobs:
pip install "alphadia[stable]==${{ needs.Create_PyPi_Release.outputs.new_version }}"
alphadia -v
conda deactivate
conda env remove --name pip_stable -y
- name: Test PyPI loose installation
shell: bash -le {0}
run: |
Expand All @@ -113,3 +117,4 @@ jobs:
pip install alphadia==${{ needs.Create_PyPi_Release.outputs.new_version }}"
alphadia -v
conda deactivate
conda env remove --name pip_loose -y

0 comments on commit 616a0d8

Please sign in to comment.