Skip to content

Commit

Permalink
fixing rad cli download URL
Browse files Browse the repository at this point in the history
  • Loading branch information
willdavsmith committed Oct 18, 2023
1 parent 8bf6467 commit 9563e90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-recipes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:
cancel-in-progress: true

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

jobs:
publish-dev:
Expand All @@ -46,10 +46,10 @@ jobs:
uses: actions/checkout@v3
- name: Parse release version and set environment variables
run: python ./.github/scripts/get_release_version.py
- name: Download rad CLI
- name: Download latest rad CLI
run: |
echo "Downloading edge rad CLI"
wget -q "${{ env.RAD_CLI_URL }}" -O - | /bin/bash -s edge
echo "Downloading latest rad CLI"
wget -q "${{ env.RAD_CLI_URL }}" -O - | /bin/bash
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
Expand Down

0 comments on commit 9563e90

Please sign in to comment.