Skip to content

Commit 0bf3148

Browse files
committed
chore: experiment
Signed-off-by: Brian Harring <[email protected]>
1 parent c8ffbf0 commit 0bf3148

File tree

3 files changed

+6
-24
lines changed

3 files changed

+6
-24
lines changed

.github/workflows/_publish.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ on:
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

1916
jobs:
@@ -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.*'

.github/workflows/release.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff 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 }}

.github/workflows/test.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ on:
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
@@ -50,7 +46,6 @@ jobs:
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' }}
@@ -97,7 +92,6 @@ jobs:
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

0 commit comments

Comments
 (0)