Skip to content

Commit f5cc586

Browse files
Pipeline fixes (#422)
* Enhance release workflows: validate @pptb/types version, merge Windows and macOS YAML files, and update versioning scheme * Fix: Ensure registry URL is set for Node.js setup in npm publish workflow * Refactor: Comment out publish-types workflows in nightly and production release YAML files
1 parent 97289fb commit f5cc586

2 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/nightly-release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -886,15 +886,15 @@ jobs:
886886
env:
887887
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
888888

889-
publish-types-beta:
890-
needs: [check-commits, publish-release, create-release-draft]
891-
if: needs.check-commits.outputs.should_build == 'true'
892-
permissions:
893-
contents: read
894-
id-token: write
895-
uses: ./.github/workflows/publish-npm-types.yml
896-
with:
897-
branch: dev
898-
tag: beta
899-
version: ${{ needs.create-release-draft.outputs.new_version }}
900-
secrets: inherit
889+
# publish-types-beta:
890+
# needs: [check-commits, publish-release, create-release-draft]
891+
# if: needs.check-commits.outputs.should_build == 'true'
892+
# permissions:
893+
# contents: read
894+
# id-token: write
895+
# uses: ./.github/workflows/publish-npm-types.yml
896+
# with:
897+
# branch: dev
898+
# tag: beta
899+
# version: ${{ needs.create-release-draft.outputs.new_version }}
900+
# secrets: inherit

.github/workflows/prod-release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -828,14 +828,14 @@ jobs:
828828
env:
829829
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
830830

831-
publish-types:
832-
needs: [publish-release, create-release-draft]
833-
permissions:
834-
contents: read
835-
id-token: write
836-
uses: ./.github/workflows/publish-npm-types.yml
837-
with:
838-
branch: main
839-
tag: latest
840-
version: ${{ needs.create-release-draft.outputs.version }}
841-
secrets: inherit
831+
# publish-types:
832+
# needs: [publish-release, create-release-draft]
833+
# permissions:
834+
# contents: read
835+
# id-token: write
836+
# uses: ./.github/workflows/publish-npm-types.yml
837+
# with:
838+
# branch: main
839+
# tag: latest
840+
# version: ${{ needs.create-release-draft.outputs.version }}
841+
# secrets: inherit

0 commit comments

Comments
 (0)