Skip to content

Commit

Permalink
Add runs_on input paramters to build-node-python
Browse files Browse the repository at this point in the history
  • Loading branch information
puehringer authored Aug 2, 2023
1 parent b3eab64 commit c4d6cac
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-node-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ on:
type: boolean
required: false
default: false
runs_on:
type: string
required: false
default: "ubuntu-20.04"
secrets:
DATAVISYN_BOT_REPO_TOKEN:
required: false
Expand Down Expand Up @@ -62,7 +66,7 @@ jobs:
permissions:
id-token: write
contents: write
runs-on: ubuntu-20.04
runs-on: ${{ inputs.platform }}
steps:
- name: Checkout source repository
uses: actions/checkout@v3
Expand Down

0 comments on commit c4d6cac

Please sign in to comment.