Skip to content

Commit 0366551

Browse files
committed
revert pipeline from using published action
1 parent 5d19e5c commit 0366551

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/pipeline.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,13 @@ jobs:
5757
- uses: actions/checkout@v4
5858
with:
5959
fetch-depth: 0
60-
- name: Check whether to release on indexes
61-
uses: MathieuMoalic/action-python-package-new-version@c4e361a9d28c1bcc19fe10bb4dcb751b625f031b
60+
- name: Check whether to release on pypi.org
61+
run: |
62+
./.github/scripts/version_check.sh
63+
- name: Check whether to release on test.pypi.org
64+
run: |
65+
export PYPI_INDEX=test.pypi.org
66+
./.github/scripts/version_check.sh
6267
- name: Globalise determined version
6368
id: set_version
6469
run: echo "package_version=${{ env.PACKAGE_VERSION }}" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)