mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-11-02 23:21:41 +01:00
20 lines
496 B
YAML
20 lines
496 B
YAML
name: Push components to https://components.espressif.com
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
jobs:
|
|
upload_components:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: Upload components to the component registry
|
|
uses: espressif/github-actions/upload_components@master
|
|
with:
|
|
name: arduino-esp32
|
|
namespace: espressif
|
|
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}
|