Merge pull request #69 from espressif/sync/partial_upstream #31
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 TinyUSB to Espressif Component Service | |
| # If the commit is tagged, it will be uploaded. Other scenario silently fail. | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| upload_components: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Upload components to component service | |
| uses: espressif/upload-components-ci-action@v2 | |
| with: | |
| components: "tinyusb: ." | |
| version: ${{ github.ref_name }} | |
| namespace: "espressif" | |
| api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }} |