Skip to content

Commit

Permalink
Merge pull request #122 from karaxuna/karaxuna/upload-to-component-re…
Browse files Browse the repository at this point in the history
…gistry

Add a workflow for uploading to component registry
  • Loading branch information
sepfy authored Sep 17, 2024
2 parents 264c59f + b7d7ae6 commit e673618
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/upload-to-component-registry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Upload component to https://components.espressif.com
on:
push:
tags:
- v*
jobs:
upload_components:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Upload component to the component registry
uses: espressif/upload-components-ci-action@v1
with:
name: "libpeer"
version: ${{ github.ref_name }}
namespace: "sepfy"
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}

0 comments on commit e673618

Please sign in to comment.