From 282ff07d5dbcb578657fa53b0be030e1c675f1f5 Mon Sep 17 00:00:00 2001 From: Will Smith Date: Wed, 28 Feb 2024 13:32:36 -0800 Subject: [PATCH] Fix release workflow to include dashboard repo clone (#7206) # Description * Fixes release issue where dashboard didn't get cloned ## Type of change - This pull request fixes a bug in Radius and has an approved issue (issue link required). Fixes: #7207 Signed-off-by: willdavsmith --- .github/workflows/release.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3e1f26b61c..b217e159bf 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -152,6 +152,13 @@ jobs: ref: main token: ${{ secrets.GH_RAD_CI_BOT_PAT }} path: recipes + - name: Checkout radius-project/dashboard@main + uses: actions/checkout@v3 + with: + repository: radius-project/dashboard + ref: main + token: ${{ secrets.GH_RAD_CI_BOT_PAT }} + path: dashboard - name: Set up GitHub credentials run: | git config --global user.name "Radius CI Bot"