2021-09-06 11:20:33 +02:00
|
|
|
name: Push LVGL release to Espressif Component Service
|
|
|
|
|
2022-01-14 18:47:49 +01:00
|
|
|
# If the commit is tagged, it will be uploaded. Other scenario silently fail.
|
2021-09-06 11:20:33 +02:00
|
|
|
on:
|
2022-01-14 18:47:49 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-09-06 11:20:33 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
upload_components:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2022-01-14 18:47:49 +01:00
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
|
|
|
|
- name: Upload component to component registry
|
2021-09-06 11:20:33 +02:00
|
|
|
uses: espressif/github-actions/upload_components@master
|
|
|
|
with:
|
|
|
|
name: "lvgl"
|
2022-01-14 18:47:49 +01:00
|
|
|
version: "git"
|
2021-09-06 11:20:33 +02:00
|
|
|
namespace: "lvgl"
|
|
|
|
api_token: ${{ secrets.ESP_IDF_COMPONENT_API_TOKEN }}
|