Skip to content

Commit

Permalink
Temporarily disable release upload to test new pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
haasad committed Nov 18, 2023
1 parent 80efdcf commit 5d4f954
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/conda-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ jobs:
- name: Upload to haasad conda channel
if: startsWith(github.ref, 'refs/tags/v')
run: |
anaconda -t ${{ secrets.CONDA_TOKEN }} upload /usr/share/miniconda/envs/test/conda-bld/noarch/*.tar.bz2
echo "skipped release"
# anaconda -t ${{ secrets.CONDA_TOKEN }} upload /usr/share/miniconda/envs/test/conda-bld/noarch/*.tar.bz2
15 changes: 9 additions & 6 deletions .github/workflows/pypi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ jobs:
pip install build
- name: Build
run: python -m build
- name: Upload to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

- name: skip
run: echo "skipped release"
# - name: Upload to PyPI
# if: startsWith(github.ref, 'refs/tags')
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# user: __token__
# password: ${{ secrets.PYPI_TOKEN }}

0 comments on commit 5d4f954

Please sign in to comment.