From 158e3185f76de41505e7483fb51c43a32ea8ea68 Mon Sep 17 00:00:00 2001 From: Reshma Abdul Rahim Date: Tue, 17 Oct 2023 17:17:07 -0400 Subject: [PATCH 1/2] Update get.radapp.dev refernces --- .devcontainer/on-create.sh | 6 +++--- .github/workflows/test.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/on-create.sh b/.devcontainer/on-create.sh index 14a38636..9134e8eb 100644 --- a/.devcontainer/on-create.sh +++ b/.devcontainer/on-create.sh @@ -16,10 +16,10 @@ else fi if [ "$RADIUS_VERSION" = "edge" ]; then - wget -q "https://get.radapp.dev/tools/rad/install.sh" -O - | /bin/bash -s edge + wget -q "https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh" -O - | /bin/bash -s edge else - wget -q "https://get.radapp.dev/tools/rad/install.sh" -O - | /bin/bash + wget -q "https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh" -O - | /bin/bash fi ## Download Bicep extension -curl https://get.radapp.dev/tools/vscode-extensibility/$RADIUS_VERSION/rad-vscode-bicep.vsix --output /tmp/rad-vscode-bicep.vsix \ No newline at end of file +curl https://github.com/radius-project/bicep/releases/download/$RADIUS_VERSION/rad-vscode-bicep.vsix --output /tmp/rad-vscode-bicep.vsix diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ac84ef97..8b3853d5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,7 +23,7 @@ on: schedule: # 7:45 AM Pacific Time - cron: "45 15 * * *" env: - RAD_CLI_URL: https://get.radapp.dev/tools/rad/install.sh + RAD_CLI_URL: https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh RUN_IDENTIFIER: samplestest-${{ github.run_id }}-${{ github.run_attempt }} jobs: test: From 346d432378a8b2a27664c2b961c089f494ae3885 Mon Sep 17 00:00:00 2001 From: Reshma Abdul Rahim Date: Tue, 17 Oct 2023 17:59:18 -0400 Subject: [PATCH 2/2] Update vscode extension install --- .devcontainer/devcontainer.json | 2 +- .devcontainer/on-create.sh | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cd43a462..fe248053 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -27,7 +27,7 @@ "ms-python.python", "dunn.redis", "GitHub.copilot", - "/tmp/rad-vscode-bicep.vsix" + "ms-azuretools.rad-vscode-bicep" ] } }, diff --git a/.devcontainer/on-create.sh b/.devcontainer/on-create.sh index 9134e8eb..ed604f31 100644 --- a/.devcontainer/on-create.sh +++ b/.devcontainer/on-create.sh @@ -20,6 +20,3 @@ if [ "$RADIUS_VERSION" = "edge" ]; then else wget -q "https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh" -O - | /bin/bash fi - -## Download Bicep extension -curl https://github.com/radius-project/bicep/releases/download/$RADIUS_VERSION/rad-vscode-bicep.vsix --output /tmp/rad-vscode-bicep.vsix