Skip to content

Commit ffe85d7

Browse files
feat(ci): Allow overriding runs-on for publish-artifact workflow (grafana#111695)
Signed-off-by: Dave Henderson <[email protected]>
1 parent 82bcfba commit ffe85d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/publish-artifact.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,13 @@ on:
3333
type: string
3434
required: false
3535
default: github-prerelease-writer@grafanalabs-workload-identity.iam.gserviceaccount.com
36+
runs-on:
37+
type: string
38+
required: false
39+
default: github-hosted-ubuntu-x64-small
3640
jobs:
3741
publish:
38-
runs-on: github-hosted-ubuntu-x64-small
42+
runs-on: ${{ inputs.runs-on }}
3943
name: Publish
4044
permissions:
4145
id-token: write

0 commit comments

Comments
 (0)