We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e1f5e commit 50ffba5Copy full SHA for 50ffba5
.github/workflows/release.yml
@@ -8,10 +8,16 @@ name: Release
8
9
on:
10
workflow_call:
11
+ inputs:
12
+ runner:
13
+ type: string
14
+ description: 'The main runner to use everywhere'
15
+ default: 'ubuntu-latest'
16
+ required: false
17
18
jobs:
19
pypi-release:
- runs-on: ubuntu-latest
20
+ runs-on: ${{ inputs.runner }}
21
# environment: # Add once trusted publisher works with reusable workflows
22
# name: pypi # Add once trusted publisher works with reusable workflows
23
# url: https://pypi.org/p/${{ github.event.repository.name }} # Add once trusted publisher works with reusable workflows
0 commit comments