Skip to content

Commit

Permalink
[FIX] test connectivity to PYPI
Browse files Browse the repository at this point in the history
  • Loading branch information
fairyshine committed Sep 19, 2024
1 parent 8dc4aeb commit 7554502
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/publish_PYPI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
--outdir dist/
.
- name: Test connectivity to PyPI
run: |
curl -I https://upload.pypi.org/legacy/
- name: publish to PYPI
uses: pypa/gh-action-pypi-publish@v1.8.12
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/publish_TESTPYPI.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: publish python package to PyPI
name: publish python package to TESTPyPI

on:
push:
Expand Down Expand Up @@ -37,6 +37,10 @@ jobs:
--outdir dist/
.
- name: Test connectivity to TESTPyPI
run: |
curl -I https://test.pypi.org/legacy/
- name: publish to Test PYPI
uses: pypa/gh-action-pypi-publish@v1.8.12
with:
Expand Down

0 comments on commit 7554502

Please sign in to comment.