We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fe9e32 commit 38afcf4Copy full SHA for 38afcf4
.github/workflows/build-firmware.yml
@@ -0,0 +1,18 @@
1
+name: build-firmware
2
+on:
3
+ push:
4
+ branches: [ main, actions ]
5
+jobs:
6
+ build-in-container:
7
+ runs-on: ubuntu-latest
8
+ container:
9
+ image: lukstep/raspberry-pi-pico-sdk:v0.0.2
10
+ steps:
11
+ - name: Check out code
12
+ uses: actions/checkout@v2
13
+ - name: pwd
14
+ run: pwd
15
+ - name: ls
16
+ run: ls -al
17
+ - name: build
18
+ run: ./b.sh
b.sh
@@ -1,5 +1,3 @@
-#!/usr/bin/bash
-
cd external
rm -rf build
mkdir build
0 commit comments