Update NOTES.md with CMSIS and Linux file name issues #16
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: Generate the vendor list | |
| on: | |
| # Run the workflow when new code is pushed to the repository | |
| push: | |
| branches: | |
| - main | |
| # Run the workflow manually | |
| workflow_dispatch: | |
| jobs: | |
| generate-vendor-list: | |
| runs-on: ubuntu-latest | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - run: | | |
| gh repo list iarsystems --limit 1000 | cut -f1 > ewarm-vendors.txt | |
| - name: Upload vendors | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ewarm-vendor-list | |
| if-no-files-found: error | |
| path: | | |
| ewarm-vendors.txt |