Skip to content

Commit c6586fc

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

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ jobs:
8484
test:
8585
uses: ./.github/workflows/test.yml
8686
needs: [build]
87+
if: false
8788
with:
8889
release-artifact-id: ${{ needs.build.outputs.release-artifact-id }}
89-
artifact-runner-id: ${{ github.runner }}
9090
format-check: false
9191

9292
publish:
@@ -95,5 +95,4 @@ jobs:
9595
uses: ./.github/workflows/_publish.yml
9696
with:
9797
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 }}
98+
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)