Skip to content

Commit a527c93

Browse files
rename package to fri3d
1 parent 29b1246 commit a527c93

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/scripts/on-release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ RELEASE_BODY=`echo $EVENT_JSON | jq -r '.release.body'`
2828
OUTPUT_DIR="$GITHUB_WORKSPACE/build"
2929
PACKAGE_NAME="esp32-$RELEASE_TAG"
3030
PACKAGE_JSON_MERGE="$GITHUB_WORKSPACE/.github/scripts/merge_packages.py"
31-
PACKAGE_JSON_TEMPLATE="$GITHUB_WORKSPACE/package/package_esp32_index.template.json"
32-
PACKAGE_JSON_DEV="package_esp32_dev_index.json"
33-
PACKAGE_JSON_REL="package_esp32_index.json"
31+
PACKAGE_JSON_TEMPLATE="$GITHUB_WORKSPACE/package/package_fri3d_index.template.json"
32+
PACKAGE_JSON_DEV="package_fri3d_dev_index.json"
33+
PACKAGE_JSON_REL="package_fri3d_index.json"
3434

3535
echo "Event: $GITHUB_EVENT_NAME, Repo: $GITHUB_REPOSITORY, Path: $GITHUB_WORKSPACE, Ref: $GITHUB_REF"
3636
echo "Action: $action, Branch: $RELEASE_BRANCH, ID: $RELEASE_ID"

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
path: |
4242
./tools/dist
4343
~/arduino_ide
44-
key: ${{ runner.os }}-${{ hashFiles('package/package_esp32_index.template.json',
44+
key: ${{ runner.os }}-${{ hashFiles('package/package_fri3d_index.template.json',
4545
'tools/get.py',
4646
'.github/scripts/install-arduino-ide.sh') }}
4747
- name: Build Sketches

docs/source/installing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ This is the way to install Arduino-ESP32 directly from the Arduino IDE.
2525

2626
- Stable release link::
2727

28-
https://francisduvivier.github.io/arduino-esp32-fri3d/package_esp32_index.json
28+
https://francisduvivier.github.io/arduino-esp32-fri3d/package_fri3d_index.json
2929

3030
- Development release link::
3131

32-
https://francisduvivier.github.io/arduino-esp32-fri3d/package_esp32_dev_index.json
32+
https://francisduvivier.github.io/arduino-esp32-fri3d/package_fri3d_dev_index.json
3333

3434

3535
.. note::

tools/get.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def identify_platform():
215215
if __name__ == '__main__':
216216
identified_platform = identify_platform()
217217
print('Platform: {0}'.format(identified_platform))
218-
tools_to_download = load_tools_list(current_dir + '/../package/package_esp32_index.template.json', identified_platform)
218+
tools_to_download = load_tools_list(current_dir + '/../package/package_fri3d_index.template.json', identified_platform)
219219
mkdir_p(dist_dir)
220220
for tool in tools_to_download:
221221
get_tool(tool)

0 commit comments

Comments
 (0)