File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 14
14
PYTHON_LATEST : 3.12
15
15
16
16
jobs :
17
- lint :
18
- name : Run linters
17
+ build :
18
+ name : Build distribution
19
19
runs-on : ubuntu-latest
20
20
outputs :
21
21
version : ${{ steps.version.outputs.version }}
86
86
check :
87
87
name : Check
88
88
if : always()
89
- needs : [lint , test]
89
+ needs : [build , test]
90
90
runs-on : ubuntu-latest
91
91
steps :
92
92
- name : Decide whether the needed jobs succeeded or failed
@@ -122,7 +122,7 @@ jobs:
122
122
environment : release
123
123
# Run only on pushing a tag
124
124
if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
125
- needs : [lint , check]
125
+ needs : [build , check]
126
126
runs-on : ubuntu-latest
127
127
steps :
128
128
- name : Install pandoc
@@ -149,8 +149,8 @@ jobs:
149
149
- name : GitHub Release
150
150
uses : ncipollo/release-action@v1
151
151
with :
152
- name : pytest-asyncio ${{ needs.lint .outputs.version }}
152
+ name : pytest-asyncio ${{ needs.build .outputs.version }}
153
153
artifacts : dist/*
154
154
bodyFile : README.md
155
- prerelease : ${{ needs.lint .outputs.prerelease }}
155
+ prerelease : ${{ needs.build .outputs.prerelease }}
156
156
token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments