diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 521efc9..9dc0d68 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,4 +13,5 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - fetch-depth: 0 \ No newline at end of file + fetch-depth: 0 + \ No newline at end of file diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 436cd48..148dec6 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -33,16 +33,15 @@ jobs: exit 1 fi + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 8 + - name: Bump version run: | VERSION=${{ steps.extract-version.outputs.version }} - npm version $VERSION --no-git-tag-version - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' + pnpm version $VERSION --no-git-tag-version - name: Commit & Push run: |