diff --git a/.github/workflows/push-preid-release.yml b/.github/workflows/push-preid-release.yml index 9837290ed14..fa647358b65 100644 --- a/.github/workflows/push-preid-release.yml +++ b/.github/workflows/push-preid-release.yml @@ -9,30 +9,30 @@ on: push: branches: # Change this to your branch name where "example-preid" corresponds to the preid you want your changes released on - - feat/example-preid-branch/main + - feat/next-15/main 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 }}