8000 Upload to the component registry (#6203) · yourchanges/arduino-esp32@1046f59 · GitHub
[go: up one dir, main page]

Skip to content
< 65E4 header class="HeaderMktg header-logged-out js-details-container js-header Details f4 py-3" role="banner" data-is-top="true" data-color-mode=light data-light-theme=light data-dark-theme=dark>

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1046f59

Browse files
magicarm22kumekay
andauthored
Upload to the component registry (espressif#6203)
Co-authored-by: Sergei Silnov <sergei.silnov@espressif.com>
1 parent 6591f5b commit 1046f59

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Push components to https://components.espressif.com
2+
on:
3+
push:
4+
tags:
5+
- v*
6+
jobs:
7+
upload_components:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
submodules: "recursive"
13+
14+
- name: Upload components to the component registry
15+
uses: espressif/github-actions/upload_components@master
16+
with:
17+
name: arduino-esp32
18+
namespace: espressif
19+
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}

idf_component.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
description: "Arduino core for ESP32, ESP32-S and ESP32-C series of SoCs"
2+
url: "https://github.com/espressif/arduino-esp32"
3+
targets:
4+
- esp32
5+
- esp32s2
6+
- esp32c3
7+
tags:
8+
- arduino
9+
files:
10+
include:
11+
- "cores/**/*"
12+
- "variants/esp32/**/*"
13+
- "variants/esp32s2/**/*"
14+
- "variants/esp32s3/**/*"
15+
- "variants/esp32c3/**/*"
16+
- "libraries/**/*"
17+
- "CMakeLists.txt"
18+
- "Kconfig.projbuild"
19+
exclude:
20+
- "**/*"

0 commit comments

Comments
 (0)
0