We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27dcbcd commit 28c9ef5Copy full SHA for 28c9ef5
1 file changed
.github/workflows/regenerate-library.yml
@@ -1,6 +1,10 @@
1
name: Regenerate Python Library
2
on:
3
workflow_dispatch:
4
+ inputs:
5
+ library_version:
6
+ description: 'The version of the new library'
7
+ required: true
8
9
jobs:
10
build:
@@ -20,7 +24,7 @@ jobs:
20
24
rm -rf meraki
21
25
- name: Regenerate Python Library
22
26
run: |
23
- python generator/generate_library.py -g true -v $RELEASE_NAME
27
+ python generator/generate_library.py -g true -v ${{ github.event.inputs.library_version }}
28
- name: Commit changes to new branch
29
uses: EndBug/add-and-commit@v9
30
with:
0 commit comments