Fix deprecation in IDF 5.4+ and update IDF build versions (#681) #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
namespace: "espressif" | |
version: ${{ github.ref_name }} | |
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }} |