File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change 75
75
token : ${{ secrets.CODECOV_TOKEN }}
76
76
fail_ci_if_error : true # optional (default = false)
77
77
verbose : true # optional (default = false)
78
- deploy :
79
- # this will run when you have tagged a commit, starting with "v*"
80
- # and requires that you have put your twine API key in your
81
- # github secrets (see readme for details)
82
- needs : [test]
83
- runs-on : ubuntu-latest
84
- if : contains(github.ref, 'tags')
85
- steps :
86
- - name : Checkout code
87
- uses : actions/checkout@v3
88
-
89
- - name : Set up Python 3.10
90
- uses : actions/setup-python@v4
91
- with :
92
- python-version : " 3.10"
93
-
94
- - name : Install hatch
95
- run : pip install hatch
96
-
97
- - name : Build project for distribution
98
- run : hatch build
99
-
100
- - name : Publish a Python distribution to PyPI
101
- uses : pypa/gh-action-pypi-publish@release/v1
102
- with :
103
- password : ${{ secrets.PYPI_API_TOKEN }}
You can’t perform that action at this time.
0 commit comments