From 5f46bf6b6b5c3d2c8531f8252d4b104d77d40175 Mon Sep 17 00:00:00 2001 From: Hui Zhao Date: Tue, 20 Aug 2024 16:40:09 -0700 Subject: [PATCH] chore: disable tag publishing --- .github/workflows/push-preid-release.yml | 40 ++++++++++++------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/push-preid-release.yml b/.github/workflows/push-preid-release.yml index 51832b14154..267127f1e1b 100644 --- a/.github/workflows/push-preid-release.yml +++ b/.github/workflows/push-preid-release.yml @@ -15,24 +15,24 @@ jobs: e2e: secrets: inherit uses: ./.github/workflows/callable-release-verification.yml - parse-preid: - name: Parse preid from branch - runs-on: ubuntu-latest - env: - BRANCH: ${{ github.ref_name }} - steps: - - id: output_preid - run: echo "preid=$(echo $BRANCH | tr -cd '[:alnum:]_\-/.' | cut -d \/ -f 2)" >> $GITHUB_OUTPUT - outputs: - preid: ${{ steps.output_preid.outputs.preid }} + # parse-preid: + # name: Parse preid from branch + # runs-on: ubuntu-latest + # env: + # BRANCH: ${{ github.ref_name }} + # steps: + # - id: output_preid + # run: echo "preid=$(echo $BRANCH | tr -cd '[:alnum:]_\-/.' | cut -d \/ -f 2)" >> $GITHUB_OUTPUT + # outputs: + # preid: ${{ steps.output_preid.outputs.preid }} - preid-release: - needs: - - e2e - - parse-preid - secrets: inherit - uses: ./.github/workflows/callable-npm-publish-preid.yml - # The preid should be detected from the branch name recommending feat/{PREID}/whatever as branch naming pattern - # if your branch doesn't follow this pattern, you can override it here for your branch. - with: - preid: ${{ needs.parse-preid.outputs.preid }} + # preid-release: + # needs: + # - e2e + # - parse-preid + # secrets: inherit + # uses: ./.github/workflows/callable-npm-publish-preid.yml + # # The preid should be detected from the branch name recommending feat/{PREID}/whatever as branch naming pattern + # # if your branch doesn't follow this pattern, you can override it here for your branch. + # with: + # preid: ${{ needs.parse-preid.outputs.preid }}