Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/typescript-packages-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# `changeset publish` builds its own publish flags and never passes
# --provenance, so request it through npm config instead.
NPM_CONFIG_PROVENANCE: true
# - name: Release docs
# Run pnpm run docs in js/packages/phoenix-client
# Deploy the static files in js/packages/phoenix-client/docs to github pages
2 changes: 1 addition & 1 deletion js/.changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["phoenix-experiment-runner", "demo-document-relevancy-experiment"],
Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"scripts": {
"build": "pnpm run -r build",
"ci:publish": "pnpm --filter './packages/*' run -r build && pnpm publish -r --access public --provenance",
"ci:publish": "pnpm --filter './packages/*' run -r build && pnpm changeset publish",
"ci:version": "pnpm changeset version",
"clean": "pnpm run clean:node_modules",
"clean:node_modules": "rimraf --glob '**/node_modules/**'",
Expand Down
Loading