usb composite device working with vcp and msc #572
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: Build firmware | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Build | |
uses: ./.github/actions/build-firmware | |
- name: Upload artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: crow-${{ github.sha }}.zip | |
path: crow-*/ |