Skip to content

Commit 6e4f8f1

Browse files
committed
fix: update repository references in Taskfile.yml
1 parent 27531bd commit 6e4f8f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Taskfile.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ tasks:
115115
echo "Runner version set as: {{ .EXAMPLE_VERSION }}"
116116
TMP_PATH="$(mktemp -d)"
117117
DEST_PATH="debian/arduino-app-cli/home/arduino/.local/share/arduino-app-cli/"
118-
echo "Cloning bcmi-labs/app-bricks-example into temporary directory ${TMP_PATH}..."
119-
git clone --depth 1 --branch "{{ .EXAMPLE_VERSION }}" https://github.com/bcmi-labs/app-bricks-example "${TMP_PATH}"
118+
echo "Cloning arduino/app-bricks-examples into temporary directory ${TMP_PATH}..."
119+
git clone --depth 1 --branch "{{ .EXAMPLE_VERSION }}" https://github.com/arduino/app-bricks-examples "${TMP_PATH}"
120120
rm -rf "${DEST_PATH}/examples"
121121
mkdir -p "${DEST_PATH}"
122122
mv "${TMP_PATH}/examples" "${DEST_PATH}"
@@ -215,7 +215,7 @@ tasks:
215215
TMP_PATH="$(mktemp -d)"
216216
217217
echo "Cloning examples into temporary directory ${TMP_PATH}..."
218-
git clone --depth 1 https://github.com/bcmi-labs/app-bricks-example.git "${TMP_PATH}"
218+
git clone --depth 1 https://github.com/arduino/app-bricks-examples.git "${TMP_PATH}"
219219
220220
echo "Installing examples to ${DEST_PATH}examples"
221221
rm -rf "${DEST_PATH}examples"
@@ -241,7 +241,7 @@ tasks:
241241
cmds:
242242
- |
243243
# Get the corresponding models and bricks release, and unzip it.
244-
gh release download -R bcmi-labs/app-bricks-py "release/{{.SEMVER_TAG}}" -p '*.whl' -D "{{.TMPDIR}}" --clobber
244+
gh release download -R arduino/app-bricks-py "release/{{.SEMVER_TAG}}" -p '*.whl' -D "{{.TMPDIR}}" --clobber
245245
unzip -o "{{.TMPDIR}}/arduino_app_bricks-{{.SEMVER_TAG}}-py3-none-any.whl" -d "{{.OUTPUT_DIR}}"
246246
- |
247247
# Copy the assets to the assets dir and testdata dir, replacing the previous version.

0 commit comments

Comments
 (0)