File tree 4 files changed +61
-5
lines changed
4 files changed +61
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+
6
+ jobs :
7
+ build :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+
12
+ - name : Set up Python
13
+ uses : actions/setup-python@v2
14
+ with :
15
+ python-version : ' 3.x'
16
+
17
+ - name : Install PlatformIO
18
+ run : pip install -U platformio
19
+
20
+ - name : Build
21
+ run : |
22
+ pio run -e ESP32TestNip01
23
+ pio run -e ESP32TestNip04
24
+ pio run -e ESP32TestNWC
Original file line number Diff line number Diff line change
1
+ name : Publish Package to PlatformIO Registry
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+
7
+ jobs :
8
+ publish :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+
13
+ - name : Set up Python
14
+ uses : actions/setup-python@v2
15
+ with :
16
+ python-version : ' 3.x'
17
+
18
+ - name : Install PlatformIO
19
+ run : pip install -U platformio
20
+
21
+ - name : Update version in library.json
22
+ run : |
23
+ VERSION=${GITHUB_REF#refs/tags/}
24
+ echo "Build version is $VERSION"
25
+ sed -i "s/\"version\": \".*\"/\"version\": \"$VERSION\"/" library.json
26
+ cat library.json
27
+
28
+ - name : Publish to PlatformIO Registry
29
+ env :
30
+ PLATFORMIO_AUTH_TOKEN : ${{ secrets.PLATFORMIO_AUTH_TOKEN }}
31
+ run : |
32
+ pio package publish --no-interactive
Original file line number Diff line number Diff line change 3
3
{
4
4
"maintainer" : true ,
5
5
"name" : " rblb" ,
6
- "url" : " https://github.com/riccardobl/nostrduino "
6
+ "url" : " https://github.com/riccardobl"
7
7
},
8
8
{
9
9
"maintainer" : false ,
28
28
},
29
29
"version" : " 1.2.0" ,
30
30
"dependencies" : {
31
- "ArduinoJson" : " ^6.21.1 " ,
31
+ "ArduinoJson" : " ^7.1.0 " ,
32
32
"uBitcoin" : " ^0.2.0" ,
33
33
"WebSockets" : " ^2.4.1"
34
34
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ build_src_filter = +<../examples/ESP32TestNip01/> +<../src/>
11
11
lib_deps =
12
12
ArduinoJson@^7.1.0
13
13
uBitcoin@^0.2.0
14
- WebSockets@^2.3.5
14
+ WebSockets@^2.4.1
15
15
Wire
16
16
marcoschwartz/LiquidCrystal_I2C@^1.1.4
17
17
@@ -25,7 +25,7 @@ build_src_filter = +<../src/> +<../examples/ESP32TestNip04/>
25
25
lib_deps =
26
26
ArduinoJson@^7.1.0
27
27
uBitcoin@^0.2.0
28
- WebSockets@^2.3.5
28
+ WebSockets@^2.4.1
29
29
Wire
30
30
marcoschwartz/LiquidCrystal_I2C@^1.1.4
31
31
@@ -38,6 +38,6 @@ build_src_filter = +<../src/> +<../examples/ESP32TestNWC/>
38
38
lib_deps =
39
39
ArduinoJson@^7.1.0
40
40
uBitcoin@^0.2.0
41
- WebSockets@^2.3.5
41
+ WebSockets@^2.4.1
42
42
Wire
43
43
marcoschwartz/LiquidCrystal_I2C@^1.1.4
You can’t perform that action at this time.
0 commit comments