Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshka committed Dec 15, 2023
1 parent babe37c commit 78f8bd9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
name: Canary Release

on:
push:
workflow_dispatch:

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
publish-canary:
name: Publish Canary
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
Expand All @@ -19,6 +23,11 @@ jobs:
with:
version: nightly

- name: Setup PNPM
uses: pnpm/action-setup@v2.2.4
with:
version: latest

- name: Setup Node v18
uses: actions/setup-node@v4
with:
Expand All @@ -30,18 +39,6 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Cache pnpm modules
uses: actions/cache@v2
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-v2-${{ hashFiles('./pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-v2
- name: install pnpm
run: npm i pnpm@latest -g

- name: Install Dependencies
run: pnpm i

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soundxyz/sound-protocol",
"version": "1.7.0",
"version": "1.7.1",
"homepage": "https://github.com/soundxyz/sound-protocol#readme",
"repository": {
"type": "git",
Expand Down

0 comments on commit 78f8bd9

Please sign in to comment.