Correct step name
#1278
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: build `node_fw` | |
# yamllint disable-line rule:truthy | |
on: | |
- pull_request | |
- push | |
- workflow_dispatch | |
jobs: | |
checkout: | |
uses: ./.github/workflows/checkout.yml | |
build: | |
needs: checkout | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: ./.github/actions/checkout | |
- name: Build firmware | |
run: fwpio run | |
- name: Upload CAN network | |
uses: actions/upload-artifact@v3.1.3 | |
with: | |
name: can-dbc | |
path: build/can/igvc_can.dbc | |
- name: Upload OpenCAN Codegen Artifacts | |
uses: actions/upload-artifact@v3.1.3 | |
with: | |
name: opencan-codegen-files | |
path: build/dbw/node_fw/opencan_generated/* | |
- name: Upload firmware binaries | |
uses: actions/upload-artifact@v3.1.3 | |
with: | |
name: node_fw-bin | |
path: build/dbw/node_fw/*/firmware.bin |