File tree 3 files changed +16
-2
lines changed
actions/run-docker-container
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
name : 🏃
3
+ description : >-
4
+ Run Docker container to
5
+ upload Python distribution packages to PyPI
3
6
inputs :
4
7
user :
8
+ description : PyPI user
5
9
required : false
6
10
password :
11
+ description : Password for your PyPI user or an access token
7
12
required : false
8
13
repository-url :
14
+ description : The repository URL to use
9
15
required : false
10
16
packages-dir :
17
+ description : The target directory for distribution
11
18
required : false
12
19
verify-metadata :
20
+ description : Check metadata before uploading
13
21
required : false
14
22
skip-existing :
23
+ description : >-
24
+ Do not fail if a Python package distribution
25
+ exists in the target package index
15
26
required : false
16
27
verbose :
28
+ description : Show verbose output.
17
29
required : false
18
30
print-hash :
31
+ description : Show hash values of files to be uploaded
19
32
required : false
20
33
runs :
21
34
using : docker
22
- image : {{image}}
35
+ image : " {{image}}"
23
36
args :
24
37
- ${{ inputs.user }}
25
38
- ${{ inputs.password }}
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ on: # yamllint disable-line rule:truthy
11
11
jobs :
12
12
build-and-push :
13
13
runs-on : ubuntu-latest
14
+ timeout-minutes : 10
14
15
steps :
15
16
- uses : actions/checkout@v4
16
17
- name : Build Docker image
Original file line number Diff line number Diff line change 31
31
args :
32
32
- --builtin-schema
33
33
- github-workflows-require-timeout
34
- files : ^\.github/workflows/[^/]+$
34
+ files : ^\.github\ /workflows/[^/]+$
35
35
types :
36
36
- yaml
37
37
- id : check-readthedocs
You can’t perform that action at this time.
0 commit comments