File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ on: # yamllint disable-line rule:truthy
9
9
env :
10
10
devpi-password : abcd1234
11
11
devpi-username : root
12
+ devpi-port : 3141
12
13
13
14
FORCE_COLOR : 1 # Request colored output from CLI tools supporting it
14
15
MYPY_FORCE_COLOR : 1 # MyPy's color enforcement
35
36
env :
36
37
DEVPI_PASSWORD : ${{ env.devpi-password }}
37
38
ports :
38
- - 3141
39
+ - ${{ env.devpi-port }}
39
40
40
41
timeout-minutes : 2
41
42
77
78
TWINE_PASSWORD : ${{ env.devpi-password }}
78
79
TWINE_REPOSITORY_URL : >-
79
80
http://localhost:${{
80
- job.services.devpi.ports['3141' ]
81
+ job.services.devpi.ports[env.devpi-port ]
81
82
}}/${{
82
83
env.devpi-username
83
84
}}/public/
87
88
user : ${{ env.devpi-username }}
88
89
password : ${{ env.devpi-password }}
89
90
repository_url : >-
90
- http://devpi:${{
91
- job.services.devpi.ports['3141']
92
- }}/${{
93
- env.devpi-username
94
- }}/public/
91
+ http://devpi:${{ env.devpi-port }}/${{ env.devpi-username }}/public/
95
92
96
93
...
You can’t perform that action at this time.
0 commit comments