Skip to content

Commit 6857d13

Browse files
committed
package
1 parent f745a58 commit 6857d13

File tree

4 files changed

+61
-5
lines changed

4 files changed

+61
-5
lines changed

.github/workflows/build-test.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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

.github/workflows/publish-package.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

library.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"maintainer": true,
55
"name": "rblb",
6-
"url": "https://github.com/riccardobl/nostrduino"
6+
"url": "https://github.com/riccardobl"
77
},
88
{
99
"maintainer": false,
@@ -28,7 +28,7 @@
2828
},
2929
"version": "1.2.0",
3030
"dependencies": {
31-
"ArduinoJson": "^6.21.1",
31+
"ArduinoJson": "^7.1.0",
3232
"uBitcoin": "^0.2.0",
3333
"WebSockets": "^2.4.1"
3434
}

platformio.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build_src_filter = +<../examples/ESP32TestNip01/> +<../src/>
1111
lib_deps =
1212
ArduinoJson@^7.1.0
1313
uBitcoin@^0.2.0
14-
WebSockets@^2.3.5
14+
WebSockets@^2.4.1
1515
Wire
1616
marcoschwartz/LiquidCrystal_I2C@^1.1.4
1717

@@ -25,7 +25,7 @@ build_src_filter = +<../src/> +<../examples/ESP32TestNip04/>
2525
lib_deps =
2626
ArduinoJson@^7.1.0
2727
uBitcoin@^0.2.0
28-
WebSockets@^2.3.5
28+
WebSockets@^2.4.1
2929
Wire
3030
marcoschwartz/LiquidCrystal_I2C@^1.1.4
3131

@@ -38,6 +38,6 @@ build_src_filter = +<../src/> +<../examples/ESP32TestNWC/>
3838
lib_deps =
3939
ArduinoJson@^7.1.0
4040
uBitcoin@^0.2.0
41-
WebSockets@^2.3.5
41+
WebSockets@^2.4.1
4242
Wire
4343
marcoschwartz/LiquidCrystal_I2C@^1.1.4

0 commit comments

Comments
 (0)