Skip to content

Commit

Permalink
Merge pull request #48 from tokenbound/bj/update-github-workflow
Browse files Browse the repository at this point in the history
update github workflow
  • Loading branch information
bjfresh authored Oct 26, 2023
2 parents c8d718a + 11898f8 commit 926cdb8
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/on-create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@ jobs:
- name: Change to package directory
run: cd packages/sdk

- name: Install dependencies
run: npm install

# - name: Install dependencies
# run: pnpm install
- name: Clean install and build 🔧
run: cd packages/sdk && npm ci && npm run build
run: cd packages/sdk && pnpm i --force --frozen-lockfile && pnpm build
# run: pnpm ci && pnpm build // pnpm ci not yet implemented: https://github.com/pnpm/pnpm/issues/6100

- name: Publish package on NPM 📦
run: cd packages/sdk && npm publish
run: cd packages/sdk && pnpm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}

0 comments on commit 926cdb8

Please sign in to comment.