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
9 changes: 9 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,19 @@ jobs:
with:
node-version: 16.x
registry-url: "https://registry.npmjs.org"
scope: "@standardnotes"

- name: Enable Corepack (Yarn)
run: corepack enable

- name: Verify npm auth + registry (debug E404)
shell: bash
run: |
node -v
npm -v
npm config get registry
npm whoami

- name: Setup git config
run: |
git config --global user.name "standardci"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build": "yarn workspaces foreach --verbose --interlaced -pt --topological-dev --jobs 10 run build",
"clean": "lerna run clean",
"release": "lerna version --conventional-commits --yes -m \"chore(release): publish\"",
"publish": "lerna publish from-git --yes --no-verify-access --loglevel verbose --ignore @standardnotes/markdown-basic --ignore @standardnotes/markdown-hybrid",
"publish": "lerna publish from-git --yes --no-verify-access --loglevel verbose --registry https://registry.npmjs.org",
"version": "yarn install --no-immutable && git add yarn.lock",
"postversion": "./scripts/push-tags-one-by-one.sh",
"dev:reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock && yarn install",
Expand Down