Skip to content

Commit ba7228c

Browse files
committed
Add ESP component registry upload workflow
Uploads to the ESP Component Registry as cleishm/frequency (not frequency-cpp) when a GitHub release is published, using OIDC authentication.
1 parent ea90596 commit ba7228c

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Upload Component
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
permissions:
8+
contents: read
9+
id-token: write
10+
11+
jobs:
12+
upload:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Upload component to ESP Component Registry
19+
uses: espressif/upload-components-ci-action@v2
20+
with:
21+
namespace: "cleishm"
22+
components: "frequency:."

0 commit comments

Comments
 (0)