1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/.github/workflows/esp_upload_component.yml
Tomas Rezucha d6ff681853
Espressif IDF component manager (#2521)
* Publish LVGL releases to Espressif's component service

* Provide idf_component.yml
2021-09-06 11:20:33 +02:00

20 lines
498 B
YAML

name: Push LVGL release to Espressif Component Service
# Upload on successful release
on:
release:
types:
- released
jobs:
upload_components:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Upload component to component service
uses: espressif/github-actions/upload_components@master
with:
name: "lvgl"
namespace: "lvgl"
api_token: ${{ secrets.ESP_IDF_COMPONENT_API_TOKEN }}