File tree Expand file tree Collapse file tree 3 files changed +6
-24
lines changed
Expand file tree Collapse file tree 3 files changed +6
-24
lines changed Original file line number Diff line number Diff line change 1111 type : string
1212 required : true
1313 description : what artifact ids to fetch. Comma delimited.
14- artifact-runner-id :
15- type : string
16- required : true
1714
1815
1916jobs :
@@ -30,10 +27,12 @@ jobs:
3027 uses : actions/download-artifact@v5
3128 with :
3229 artifact-ids : ${{ inputs.release-artifact-ids }}
33- artifact-runner : ${{ inputs.artifact-runner-id }}
30+
31+ - name : debug
32+ run : find .
3433
3534 - name : Publish github source
36- if : ${{ ! inputs.is_test }}
35+ if : ! inputs.is_test
3736 uses : softprops/action-gh-release@v2
3837 with :
3938 files : ' *.tar.*'
Original file line number Diff line number Diff line change @@ -81,19 +81,10 @@ jobs:
8181 path : dist/*.tar.gz
8282 if-no-files-found : error
8383
84- test :
85- uses : ./.github/workflows/test.yml
86- needs : [build]
87- with :
88- release-artifact-id : ${{ needs.build.outputs.release-artifact-id }}
89- artifact-runner-id : ${{ github.runner }}
90- format-check : false
91-
9284 publish :
9385 if : github.ref_type == 'tag' || ( github.ref_type == 'branch' || github.ref_name == 'release-test-pypi' )
94- needs : [build, test ]
86+ needs : [build]
9587 uses : ./.github/workflows/_publish.yml
9688 with :
9789 is_test : ${{ github.ref_type == 'tag' }}
98- release-artifact-ids : ${{ needs.build.outputs.release-artifact-id }},${{ needs.build.outputs.wheel-artifact-id }}
99- artifact-runner-id : ${{ github.runner }}
90+ release-artifact-ids : ${{ needs.build.outputs.release-artifact-id }},${{ needs.build.outputs.wheel-artifact-id }}
Original file line number Diff line number Diff line change 1212 type : string
1313 default : ' '
1414 description : The artifact-id to run the tests against.
15- artifact-runner-id :
16- required : false
17- type : string
18- default : ' '
1915 format-check :
2016 type : boolean
2117 default : true
5046 uses : ferringb/gh-actions/get-source@v1
5147 with :
5248 artifact-id : ${{ inputs.release-artifact-id }}
53- artifact-runner-id : ${{ inputs.artifact-runner-id }}
5449
5550 - name : Pin dependencies to minimal versions
5651 if : ${{ matrix.deps == 'minimal-deps' }}
9792 uses : ferringb/gh-actions/get-source@v1
9893 with :
9994 artifact-id : ${{ inputs.release-artifact-id }}
100- artifact-runner-id : ${{ inputs.artifact-runner-id }}
10195 path : pkgcore
10296
10397 - name : Checkout pkgcheck
@@ -134,7 +128,6 @@ jobs:
134128 uses : ferringb/gh-actions/get-source@v1
135129 with :
136130 artifact-id : ${{ inputs.release-artifact-id }}
137- artifact-runner-id : ${{ inputs.artifact-runner-id }}
138131 path : pkgcore
139132 - name : Checkout pkgdev
140133 uses : actions/checkout@v5
@@ -180,7 +173,6 @@ jobs:
180173 uses : ferringb/gh-actions/get-source@v1
181174 with :
182175 artifact-id : ${{ inputs.release-artifact-id }}
183- artifact-runner-id : ${{ inputs.artifact-runner-id }}
184176 path : pkgcore
185177
186178 - name : Checkout gentoo
You can’t perform that action at this time.
0 commit comments