Skip to content

Commit b04df4e

Browse files
author
olliiiver
committed
fix for pio handling
1 parent f59565d commit b04df4e

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/native.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ jobs:
1313
uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.x"
16-
cache: "pip"
1716

1817
- name: Cache PlatformIO
1918
uses: actions/cache@v4
2019
with:
21-
path: ~/.platformio
20+
path: |
21+
~/.platformio
22+
~/.cache/pip
2223
key: ${{ runner.os }}-pio-${{ hashFiles('**/platformio.ini') }}
2324
restore-keys: |
2425
${{ runner.os }}-pio-
@@ -45,12 +46,13 @@ jobs:
4546
uses: actions/setup-python@v5
4647
with:
4748
python-version: "3.x"
48-
cache: "pip"
4949

5050
- name: Cache PlatformIO
5151
uses: actions/cache@v4
5252
with:
53-
path: ~/.platformio
53+
path: |
54+
~/.platformio
55+
~/.cache/pip
5456
key: ${{ runner.os }}-pio-${{ hashFiles('**/platformio.ini') }}
5557
restore-keys: |
5658
${{ runner.os }}-pio-

0 commit comments

Comments
 (0)