Merge branch 'fix/build_esp-idf_33601' into 'feature/esp_as_mcu_host' #71
Workflow file for this run
This file contains hidden or 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: | |
| branches: | |
| - feature/esp_as_mcu_host | |
| jobs: | |
| upload_components: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: "recursive" | |
| - name : Copy common dir into slave | |
| run: cp -r common slave/main/ | |
| - name: Upload component to the component registry | |
| uses: espressif/upload-components-ci-action@v1 | |
| with: | |
| name: "esp_hosted" | |
| namespace: "espressif" | |
| api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }} |