Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #49
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: Local runner build project for latest version | |
on: push | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Setup Zephyr project | |
uses: fabiobaltieri/zephyr-setup@main | |
with: | |
app-path: hello_world | |
toolchains: arm-zephyr-eabi | |
- name: build | |
run: west build hello_world -b nucleo_f767zi | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: firmware | |
path: build | |
- uses: actions/[email protected] | |
with: | |
name: firmware | |
path: build | |
- run: zip -r build.zip build/ | |