Skip to content

Commit

Permalink
Add runner-name input to publish-crate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
syl20bnr committed Oct 11, 2024
1 parent 947a5dd commit 53a95cc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish-crate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: publish-crate
on:
workflow_call:
inputs:
runner-name:
required: false
type: string
default: ubuntu-latest
crate:
required: true
type: string
Expand All @@ -12,7 +16,7 @@ on:

jobs:
publish-crate:
runs-on: ubuntu-latest
runs-on: ${{ inputs.runner-name }}
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 53a95cc

Please sign in to comment.