mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 03:56:57 +03:00
22 lines
586 B
YAML
22 lines
586 B
YAML
name: Push component to https://components.espressif.com
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
jobs:
|
|
upload_components:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: Upload component to the component registry
|
|
uses: espressif/github-actions/upload_components@master
|
|
with:
|
|
name: "esp32-camera"
|
|
version: "git"
|
|
namespace: "espressif"
|
|
service_url: ${{ secrets.IDF_COMPONENT_API_URL }}
|
|
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}
|