From 3c121fa290eac0dfadaa2395021bb48844d9f3a2 Mon Sep 17 00:00:00 2001 From: Bonnie Date: Fri, 22 Nov 2024 13:57:29 +0800 Subject: [PATCH] Update tag name --- .github/workflows/publish-package.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-package.yaml b/.github/workflows/publish-package.yaml index 24c8062c..7dfeee88 100644 --- a/.github/workflows/publish-package.yaml +++ b/.github/workflows/publish-package.yaml @@ -202,7 +202,7 @@ jobs: check_if_version_is_valid_for_branch, fetch_last_tag, ] - + if: ${{ (needs.check_if_version_is_valid_for_branch.outputs.is_publish_core_sdk == 'true' || needs.check_if_version_is_valid_for_branch.outputs.is_publish_react_sdk == 'true') && github.event_name == 'push' }} runs-on: ubuntu-latest environment: "beta-sepolia" @@ -286,7 +286,7 @@ jobs: if: ${{ github.event_name == 'push' && needs.check_if_version_is_valid_for_branch.outputs.IS_PUBLISH_CORE_SDK == 'true'}} uses: ./.github/workflows/reusable-create-release.yml with: - tag_name: \@story-protocol/core-sdk@${{ needs.print_version_to_publish.outputs.core_sdk_version_to_be_published }} + tag_name: "@story-protocol/core-sdk@${{ needs.print_version_to_publish.outputs.core_sdk_version_to_be_published }}" is_core_sdk: true last_tag: ${{ needs.fetch_last_tag.outputs.CORE_SDK_LATEST_TAG }} @@ -315,7 +315,7 @@ jobs: if: ${{ github.event_name == 'push' && needs.check_if_version_is_valid_for_branch.outputs.IS_PUBLISH_REACT_SDK == 'true'}} uses: ./.github/workflows/reusable-create-release.yml with: - tag_name: \@story-protocol/react-sdk@${{ needs.print_version_to_publish.outputs.react_sdk_version_to_be_published }} + tag_name: "@story-protocol/react-sdk@${{ needs.print_version_to_publish.outputs.react_sdk_version_to_be_published }}" is_core_sdk: false last_tag: ${{ needs.fetch_last_tag.outputs.REACT_SDK_LATEST_TAG }}