There was an error while loading. Please reload this page.
1 parent 49e27a1 commit db202fbCopy full SHA for db202fb
1 file changed
.github/workflows/upload_component.yml
@@ -12,10 +12,16 @@ jobs:
12
- uses: actions/checkout@v4
13
with:
14
submodules: 'recursive'
15
+ - name: Sanitize version string
16
+ id: version
17
+ env:
18
+ REF: ${{ github.ref_name }}
19
+ run: |
20
+ echo "value=${REF//-/\~}" >> "$GITHUB_OUTPUT"
21
- name: Upload components to component service
22
uses: espressif/upload-components-ci-action@v1
23
24
name: "esp-hosted-tanmatsu"
- version: ${{ github.ref_name }}
25
+ version: ${{ steps.version.outputs.value }}
26
namespace: "nicolaielectronics"
27
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}
0 commit comments