Skip to content

Commit 8decc9d

Browse files
committed
Another tweak to auto release [ci skip]
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent 90a9ccf commit 8decc9d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/prepare_release.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,57 +47,57 @@ jobs:
4747
4848
- name: Install ModularSensors from the master branch
4949
run: |
50-
pio pkg install -g --library https://github.com/EnviroDIY/ModularSensors
50+
pio pkg install -g -l https://github.com/EnviroDIY/ModularSensors
5151
5252
# Uninstall graphics libraries from Adafruit
5353
- name: Uninstall Adafruit GFX Library library
5454
continue-on-error: true
5555
run: |
5656
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"
5858
5959
- name: Uninstall Adafruit NeoPixel library
6060
continue-on-error: true
6161
run: |
6262
echo "::debug::Removing Adafruit NeoPixel"
63-
pio pkg uninstall --library -g "adafruit/Adafruit NeoPixel"
63+
pio pkg uninstall -g -l "adafruit/Adafruit NeoPixel"
6464
6565
- name: Uninstall Adafruit SSD1306 library
6666
continue-on-error: true
6767
run: |
6868
echo "::debug::Removing Adafruit SSD1306"
69-
pio pkg uninstall --library -g "adafruit/Adafruit SSD1306"
69+
pio pkg uninstall -g -l "adafruit/Adafruit SSD1306"
7070
7171
- name: Uninstall Adafruit ADXL343 library
7272
continue-on-error: true
7373
run: |
7474
echo "::debug::Removing Adafruit ADXL343"
75-
pio pkg uninstall --library -g "adafruit/Adafruit ADXL343"
75+
pio pkg uninstall -g -l "adafruit/Adafruit ADXL343"
7676
7777
- name: Uninstall Adafruit STMPE610 library
7878
continue-on-error: true
7979
run: |
8080
echo "::debug::Removing Adafruit STMPE610"
81-
pio pkg uninstall --library -g "adafruit/Adafruit STMPE610"
81+
pio pkg uninstall -g -l "adafruit/Adafruit STMPE610"
8282
8383
- name: Uninstall Adafruit TouchScreen library
8484
continue-on-error: true
8585
run: |
8686
echo "::debug::Removing Adafruit TouchScreen"
87-
pio pkg uninstall --library -g "adafruit/Adafruit TouchScreen"
87+
pio pkg uninstall -g -l "adafruit/Adafruit TouchScreen"
8888
8989
- name: Uninstall Adafruit ILI9341 library
9090
continue-on-error: true
9191
run: |
9292
echo "::debug::Removing Adafruit ILI9341"
93-
pio pkg uninstall --library -g "adafruit/Adafruit ILI9341"
93+
pio pkg uninstall -g -l "adafruit/Adafruit ILI9341"
9494
9595
# zip up all the installed libraries
9696
# need to cd into the pio directory so we don't get extra junk directories
9797
- name: Zip libraries
9898
run: |
9999
echo "::debug::Listing global libraries"
100-
pio pkg list -g -v --only-libraries
100+
pio pkg list -g -v --only-libraries
101101
echo "::debug::Zipping global libraries"
102102
cd /home/runner/.platformio/
103103
zip ${{ env.ZIP_NAME }}.zip -r lib

0 commit comments

Comments
 (0)