Skip to content

Commit b5a5208

Browse files
committed
added explicit env name to workflow
1 parent f89b175 commit b5a5208

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ on:
88
jobs:
99
publish-pypi-test:
1010
name: Publish to TestPyPI
11-
environment: test
11+
environment:
12+
name: test
13+
url: https://test.pypi.org/project/ultraplot/
1214
runs-on: ubuntu-latest
1315
if: github.event_name == 'push'
1416
permissions:
@@ -30,7 +32,9 @@ jobs:
3032

3133
publish-prod:
3234
name: Publish to PyPI
33-
environment: prod
35+
environment:
36+
name: prod
37+
url: https://pypi.org/project/ultraplot/
3438
runs-on: ubuntu-latest
3539
if: github.event_name == 'release'
3640
permissions:

0 commit comments

Comments
 (0)