ci(esp): fix push to the component registry on tag (#3740)

This commit is contained in:
Sergei Silnov
2022-10-13 12:14:47 +02:00
committed by GitHub
parent 6a9f324a4f
commit 747eae6144

View File

@@ -3,21 +3,21 @@ name: Push LVGL release to Espressif Component Service
# If the commit is tagged, it will be uploaded. Other scenario silently fail. # If the commit is tagged, it will be uploaded. Other scenario silently fail.
on: on:
push: push:
branches: tags:
- master - v*
jobs: jobs:
upload_components: upload_components:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@v2
with: with:
submodules: "recursive" submodules: "recursive"
- name: Upload component to component registry - name: Upload component to component registry
uses: espressif/github-actions/upload_components@master uses: espressif/upload-components-ci-action@v1
with: with:
name: "lvgl" name: "lvgl"
version: "git" version: ${{ github.ref_name }}
namespace: "lvgl" namespace: "lvgl"
api_token: ${{ secrets.ESP_IDF_COMPONENT_API_TOKEN }} api_token: ${{ secrets.ESP_IDF_COMPONENT_API_TOKEN }}