2022-09-26 08:30:07 -07:00
|
|
|
name: Push LVGL release to Espressif Component Service
|
|
|
|
|
|
|
|
# If the commit is tagged, it will be uploaded. Other scenario silently fail.
|
|
|
|
on:
|
|
|
|
push:
|
2022-10-13 12:14:47 +02:00
|
|
|
tags:
|
|
|
|
- v*
|
2022-09-26 08:30:07 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
upload_components:
|
2024-04-08 18:18:13 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-09-26 08:30:07 -07:00
|
|
|
steps:
|
2023-11-02 11:03:37 +01:00
|
|
|
- uses: actions/checkout@v4
|
2022-09-26 08:30:07 -07:00
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
|
|
|
|
- name: Upload component to component registry
|
2022-10-13 12:14:47 +02:00
|
|
|
uses: espressif/upload-components-ci-action@v1
|
2022-09-26 08:30:07 -07:00
|
|
|
with:
|
|
|
|
name: "lvgl"
|
2022-10-13 12:14:47 +02:00
|
|
|
version: ${{ github.ref_name }}
|
2022-09-26 08:30:07 -07:00
|
|
|
namespace: "lvgl"
|
|
|
|
api_token: ${{ secrets.ESP_IDF_COMPONENT_API_TOKEN }}
|