We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3cc040 commit 10d0bf8Copy full SHA for 10d0bf8
.github/workflows/upload-idf-component.yml
@@ -4,7 +4,10 @@ on:
4
workflow_dispatch:
5
inputs:
6
tag:
7
- description: 'Tag to push to the component registry'
+ description: 'Version to push to the component registry'
8
+ required: true
9
+ git_ref:
10
+ description: 'Git ref with the source to push to the component registry'
11
required: true
12
workflow_run:
13
workflows: ["ESP32 Arduino Release"]
@@ -44,7 +47,7 @@ jobs:
44
47
45
48
- uses: actions/checkout@v4
46
49
with:
- ref: ${{ env.RELEASE_TAG }}
50
+ ref: ${{ inputs.git_ref || env.RELEASE_TAG }}
51
submodules: "recursive"
52
53
- name: Upload components to the component registry
0 commit comments