Skip to content

Commit 13a5161

Browse files
committed
Add home variable
1 parent b84b2d9 commit 13a5161

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
- name: Trigger framework installation
9898
run: platformio run -e esp32dev-all-test
9999
- name: Replace libbtdm_app.a file
100-
run: cp lib/libbtdm_app.a .platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/ld/libbtdm_app.a
100+
run: cp lib/libbtdm_app.a $HOME/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/ld/libbtdm_app.a
101101
- name: Verify file replacement
102102
run: |
103103
echo "Listing the file at the target location:"

.github/workflows/build_and_docs_to_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Trigger framework installation
3636
run: platformio run -e esp32dev-all-test
3737
- name: Replace libbtdm_app.a file
38-
run: cp lib/libbtdm_app.a .platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/ld/libbtdm_app.a
38+
run: cp lib/libbtdm_app.a $HOME/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/ld/libbtdm_app.a
3939
- name: Verify file replacement
4040
run: |
4141
echo "Listing the file at the target location:"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Trigger framework installation
2828
run: platformio run -e esp32dev-all-test
2929
- name: Replace libbtdm_app.a file
30-
run: cp lib/libbtdm_app.a .platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/ld/libbtdm_app.a
30+
run: cp lib/libbtdm_app.a $HOME/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/ld/libbtdm_app.a
3131
- name: Verify file replacement
3232
run: |
3333
echo "Listing the file at the target location:"

0 commit comments

Comments
 (0)