Skip to content

Commit c4d6cac

Browse files
authored
Add runs_on input paramters to build-node-python
1 parent b3eab64 commit c4d6cac

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-node-python.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ on:
2828
type: boolean
2929
required: false
3030
default: false
31+
runs_on:
32+
type: string
33+
required: false
34+
default: "ubuntu-20.04"
3135
secrets:
3236
DATAVISYN_BOT_REPO_TOKEN:
3337
required: false
@@ -62,7 +66,7 @@ jobs:
6266
permissions:
6367
id-token: write
6468
contents: write
65-
runs-on: ubuntu-20.04
69+
runs-on: ${{ inputs.platform }}
6670
steps:
6771
- name: Checkout source repository
6872
uses: actions/checkout@v3

0 commit comments

Comments
 (0)