Skip to content

Commit

Permalink
gh: fix gh output
Browse files Browse the repository at this point in the history
  • Loading branch information
shanefontaine committed May 22, 2024
1 parent 6370aba commit 5f9c7d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Get pnpm store directory
id: pnpm-store
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPU
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
name: Setup pnpm cache
Expand All @@ -44,11 +44,10 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install package
run: pnpm --filter-prod ${{ matrix.package-name }}... install

- name: Build package
run: pnpm --filter ${{ matrix.package-name }}... build
- name: Install and build package
run: |
pnpm --filter-prod ${{ matrix.package-name }}... install
pnpm --filter ${{ matrix.package-name }}... build
- name: Publish package
run: NPM_CONFIG_PROVENANCE=true pnpm --filter ${{ matrix.package-name }} publish --publish-branch production --access public
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hop-protocol/sdk",
"version": "0.0.26",
"version": "0.0.27",
"description": "The v1 Hop Protocol TypeScript SDK",
"author": "Authereum Labs, Inc.",
"license": "MIT",
Expand Down

0 comments on commit 5f9c7d3

Please sign in to comment.