Rolling 20220121

This commit is contained in:
jomjol
2022-01-21 20:50:54 +01:00
parent 19a6c21c44
commit 53606d5055
31 changed files with 1051 additions and 51 deletions

View File

@@ -3,8 +3,6 @@ on:
push:
branches:
- master
- bugfix/*
- feature/*
pull_request:
jobs:

View File

@@ -0,0 +1,21 @@
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 }}