Skip to content

Commit a1b1fe4

Browse files
committed
Use seprate environments for test-pypi and pypi
1 parent 6b57577 commit a1b1fe4

File tree

1 file changed

+25
-12
lines changed

1 file changed

+25
-12
lines changed

.github/workflows/release.yml

+25-12
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/[email protected]
2626
with:
27-
python-version: "3.9"
27+
python-version: "3.12"
2828

2929
- name: Upgrade pip
3030
run: |
@@ -73,33 +73,46 @@ jobs:
7373
name: release-artifacts
7474
path: dist/
7575

76-
pypi-publish:
76+
test-pypi-publish:
7777
name: Publish to PyPI
7878
needs: [tag-and-build]
79+
if: "! needs.tag-and-build.outputs.tag"
7980
environment:
80-
name: release
81+
name: test-pypi
8182
url: https://test.pypi.org/p/protosym
8283
permissions:
8384
id-token: write
8485
runs-on: ubuntu-latest
8586

8687
steps:
87-
- run: echo "Tag = ${{ needs.tag-and-build.outputs.tag }}"
88-
8988
- name: Download release artifacts
9089
uses: actions/download-artifact@v4
9190
with:
9291
name: release-artifacts
9392
path: dist
9493

95-
- run: ls -R dist
96-
97-
- name: Publish package on PyPI
98-
if: needs.tag-and-build.outputs.tag
99-
uses: pypa/gh-action-pypi-publish@release/v1
100-
10194
- name: Publish package on TestPyPI
102-
if: "! needs.tag-and-build.outputs.tag"
10395
uses: pypa/gh-action-pypi-publish@release/v1
10496
with:
10597
repository-url: https://test.pypi.org/legacy/
98+
99+
pypi-publish:
100+
name: Publish to PyPI
101+
needs: [tag-and-build]
102+
if: needs.tag-and-build.outputs.tag
103+
environment:
104+
name: pypi
105+
url: https://pypi.org/p/protosym
106+
permissions:
107+
id-token: write
108+
runs-on: ubuntu-latest
109+
110+
steps:
111+
- name: Download release artifacts
112+
uses: actions/download-artifact@v4
113+
with:
114+
name: release-artifacts
115+
path: dist
116+
117+
- name: Publish package on PyPI
118+
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)