Skip to content

Commit cf84ea1

Browse files
committed
Disable push to testpypi until we solve the problem with the credentials
1 parent 28d1383 commit cf84ea1

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/workflows/main.yaml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
needs: [ code-quality ]
114114

115115
push-docs-and-release-testpypi:
116-
name: Push Docs and maybe release Package to TestPyPI
116+
name: Publish documentation # and maybe release package to TestPyPI
117117
runs-on: ubuntu-22.04
118118
needs: [docs, group-tests, notebook-tests]
119119
if: ${{ github.ref == 'refs/heads/develop' }}
@@ -132,21 +132,22 @@ jobs:
132132
uses: r-lib/actions/setup-pandoc@v2
133133
with:
134134
pandoc-version: ${{ env.PANDOC_VERSION }}
135-
- name: Deploy Docs
135+
- name: Deploy docs
136136
uses: ./.github/actions/deploy-docs
137137
with:
138138
version: devel
139139
alias: develop
140140
title: Development
141141
email: ${{ env.GITHUB_BOT_EMAIL }}
142142
username: ${{ env.GITHUB_BOT_USERNAME }}
143-
- name: Build and publish to TestPyPI
144-
env:
145-
TWINE_USERNAME: __token__
146-
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
147-
run: |
148-
set -x
149-
export BUILD_NUMBER=$GITHUB_RUN_NUMBER
150-
bump2version --no-tag --no-commit --verbose --serialize '{major}.{minor}.{patch}.{release}{$BUILD_NUMBER}' boguspart
151-
python setup.py sdist bdist_wheel
152-
twine upload -r testpypi --verbose --non-interactive dist/*
143+
# Deactivated until we solve the issue with the credentials (Jan. 2025)
144+
# - name: Build and publish to TestPyPI
145+
# env:
146+
# TWINE_USERNAME: __token__
147+
# TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
148+
# run: |
149+
# set -x
150+
# export BUILD_NUMBER=$GITHUB_RUN_NUMBER
151+
# bump2version --no-tag --no-commit --verbose --serialize '{major}.{minor}.{patch}.{release}{$BUILD_NUMBER}' boguspart
152+
# python setup.py sdist bdist_wheel
153+
# twine upload -r testpypi --verbose --non-interactive dist/*

0 commit comments

Comments
 (0)