From c2056cc0a8e4ee50a91780fdec2455f0024fb967 Mon Sep 17 00:00:00 2001 From: Will Smith Date: Tue, 27 Feb 2024 10:18:16 -0800 Subject: [PATCH] Adding dashboard release branch creation and tag push (#7160) # Description Dependent on: https://github.com/radius-project/dashboard/pull/51 ## Type of change - This pull request adds or changes features of Radius and has an approved issue (issue link required). Part of: https://github.com/radius-project/dashboard/issues/47 Signed-off-by: willdavsmith Co-authored-by: Young Bu Park --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 81d438427d0..7789d831b0b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -214,3 +214,7 @@ jobs: if: success() && steps.release-branch-exists.outputs.result == 'false' run: | ./radius/.github/scripts/release-create-tag-and-branch.sh recipes ${{ steps.get-version.outputs.release-version }} ${{ steps.get-version.outputs.release-branch-name }} + - name: Release radius-project/dashboard version ${{ steps.get-version.outputs.release-version }} + if: success() && steps.release-branch-exists.outputs.result == 'false' + run: | + ./radius/.github/scripts/release-create-tag-and-branch.sh dashboard ${{ steps.get-version.outputs.release-version }} ${{ steps.get-version.outputs.release-branch-name }}