Skip to content

Commit

Permalink
gh: use output and streamline
Browse files Browse the repository at this point in the history
  • Loading branch information
shanefontaine committed May 22, 2024
1 parent 0c31fd0 commit 6370aba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
uses: ./.github/actions/setup

- name: Get pnpm store directory
id: pnpm-store
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPU

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
path: ${{ steps.pnpm-store.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
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.25",
"version": "0.0.26",
"description": "The v1 Hop Protocol TypeScript SDK",
"author": "Authereum Labs, Inc.",
"license": "MIT",
Expand Down

0 comments on commit 6370aba

Please sign in to comment.