File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed
actions/run-docker-container Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 11---
22name : 🏃
3+ description : >-
4+ Run Docker container to
5+ upload Python distribution packages to PyPI
36inputs :
47 user :
8+ description : PyPI user
59 required : false
610 password :
11+ description : Password for your PyPI user or an access token
712 required : false
813 repository-url :
14+ description : The repository URL to use
915 required : false
1016 packages-dir :
17+ description : The target directory for distribution
1118 required : false
1219 verify-metadata :
20+ description : Check metadata before uploading
1321 required : false
1422 skip-existing :
23+ description : >-
24+ Do not fail if a Python package distribution
25+ exists in the target package index
1526 required : false
1627 verbose :
28+ description : Show verbose output.
1729 required : false
1830 print-hash :
31+ description : Show hash values of files to be uploaded
1932 required : false
2033runs :
2134 using : docker
22- image : {{image}}
35+ image : " {{image}}"
2336 args :
2437 - ${{ inputs.user }}
2538 - ${{ inputs.password }}
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ on: # yamllint disable-line rule:truthy
1111jobs :
1212 build-and-push :
1313 runs-on : ubuntu-latest
14+ timeout-minutes : 10
1415 steps :
1516 - uses : actions/checkout@v4
1617 - name : Build Docker image
Original file line number Diff line number Diff line change 3131 args :
3232 - --builtin-schema
3333 - github-workflows-require-timeout
34- files : ^\.github/workflows/[^/]+$
34+ files : ^\.github\ /workflows/[^/]+$
3535 types :
3636 - yaml
3737 - id : check-readthedocs
You can’t perform that action at this time.
0 commit comments