Skip to content

Commit b3001f0

Browse files
committed
First alpha release
1 parent e3624a7 commit b3001f0

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Push components to Espressif Component Service
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
upload_components:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
with:
14+
submodules: 'recursive'
15+
- name: Upload components to component service
16+
uses: espressif/upload-components-ci-action@v1
17+
with:
18+
name: "badge-elf"
19+
version: ${{ github.ref_name }}
20+
namespace: "badgeteam"
21+
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# BadgeELF applet loader
2+
This component loads BadgeELF applets ([template](https://github.com/badgteam/badge-elf-template); [API](https://github.com/badgeteam/esp32-component-badge-elf-api)) and dynamically links them into the running firmware.

idf_component.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
targets:
2+
- esp32p4
3+
dependencies:
4+
badgeteam/badge-elf-api: "0.0.2"

0 commit comments

Comments
 (0)