diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index ee2b57bd..5e6f74ca 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -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 @@ -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: @@ -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 diff --git a/package.json b/package.json index 25b2aebf..844ced40 100644 --- a/package.json +++ b/package.json @@ -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",