Skip to content

Commit

Permalink
👷 Add correct token to publish all packages (#2877)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckcarpenter authored Jun 19, 2024
1 parent 55e6ed6 commit 877da69
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ jobs:

env:
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
8 changes: 4 additions & 4 deletions landing/src/pages/demo.astro
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ const shepherdIncludeCode = `
(function () {
async function init() {
// connect to shepherd pro
await Shepherd.init(
import.meta.env.PUBLIC_SHEPHERD_PUBLIC_KEY,
import.meta.env.PUBLIC_SHEPHERD_FRONTEND_API
);
// await Shepherd.init(
// import.meta.env.PUBLIC_SHEPHERD_PUBLIC_KEY,
// import.meta.env.PUBLIC_SHEPHERD_FRONTEND_API
// );
// wait for shepherd to be ready
setTimeout(function () {
const shepherd = setupShepherd();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"Chuck Carpenter <chuck@shipshape.io>"
],
"scripts": {
"build": "pnpm --filter=!landing build",
"build": "pnpm -F shepherd.js build && pnpm -F '!shepherd.js' build",
"cypress:install": "pnpm -F 'cypress-tests' cypress:install",
"dev": "pnpm watch",
"docs": "node_modules/.bin/jsdoc -c .jsdoc.js --verbose",
Expand Down

0 comments on commit 877da69

Please sign in to comment.