@@ -47,57 +47,57 @@ jobs:
47
47
48
48
- name : Install ModularSensors from the master branch
49
49
run : |
50
- pio pkg install -g --library https://github.com/EnviroDIY/ModularSensors
50
+ pio pkg install -g -l https://github.com/EnviroDIY/ModularSensors
51
51
52
52
# Uninstall graphics libraries from Adafruit
53
53
- name : Uninstall Adafruit GFX Library library
54
54
continue-on-error : true
55
55
run : |
56
56
echo "::debug::Removing Adafruit GFX Library"
57
- pio pkg uninstall --library -g adafruit/Adafruit GFX Library
57
+ pio pkg uninstall -g -l " adafruit/Adafruit GFX Library"
58
58
59
59
- name : Uninstall Adafruit NeoPixel library
60
60
continue-on-error : true
61
61
run : |
62
62
echo "::debug::Removing Adafruit NeoPixel"
63
- pio pkg uninstall --library -g adafruit/Adafruit NeoPixel
63
+ pio pkg uninstall -g -l " adafruit/Adafruit NeoPixel"
64
64
65
65
- name : Uninstall Adafruit SSD1306 library
66
66
continue-on-error : true
67
67
run : |
68
68
echo "::debug::Removing Adafruit SSD1306"
69
- pio pkg uninstall --library -g adafruit/Adafruit SSD1306
69
+ pio pkg uninstall -g -l " adafruit/Adafruit SSD1306"
70
70
71
71
- name : Uninstall Adafruit ADXL343 library
72
72
continue-on-error : true
73
73
run : |
74
74
echo "::debug::Removing Adafruit ADXL343"
75
- pio pkg uninstall --library -g adafruit/Adafruit ADXL343
75
+ pio pkg uninstall -g -l " adafruit/Adafruit ADXL343"
76
76
77
77
- name : Uninstall Adafruit STMPE610 library
78
78
continue-on-error : true
79
79
run : |
80
80
echo "::debug::Removing Adafruit STMPE610"
81
- pio pkg uninstall --library -g adafruit/Adafruit STMPE610
81
+ pio pkg uninstall -g -l " adafruit/Adafruit STMPE610"
82
82
83
83
- name : Uninstall Adafruit TouchScreen library
84
84
continue-on-error : true
85
85
run : |
86
86
echo "::debug::Removing Adafruit TouchScreen"
87
- pio pkg uninstall --library -g adafruit/Adafruit TouchScreen
87
+ pio pkg uninstall -g -l " adafruit/Adafruit TouchScreen"
88
88
89
89
- name : Uninstall Adafruit ILI9341 library
90
90
continue-on-error : true
91
91
run : |
92
92
echo "::debug::Removing Adafruit ILI9341"
93
- pio pkg uninstall --library -g adafruit/Adafruit ILI9341
93
+ pio pkg uninstall -g -l " adafruit/Adafruit ILI9341"
94
94
95
95
# zip up all the installed libraries
96
96
# need to cd into the pio directory so we don't get extra junk directories
97
97
- name : Zip libraries
98
98
run : |
99
99
echo "::debug::Listing global libraries"
100
- pio pkg list --library - g -v
100
+ pio pkg list -g -v --only-libraries
101
101
echo "::debug::Zipping global libraries"
102
102
cd /home/runner/.platformio/
103
103
zip ${{ env.ZIP_NAME }}.zip -r lib
@@ -151,7 +151,7 @@ jobs:
151
151
# Create a new release
152
152
- name : Create release
153
153
id : create_release
154
- uses :
softprops/[email protected] .14
154
+ uses :
softprops/[email protected] .15
155
155
env :
156
156
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
157
157
with :
0 commit comments