diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 21986700e0..f0553e57cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,12 +19,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - name: Setup Node.js 16.x - uses: actions/setup-node@v2 + - name: Setup Node.js 20.x + uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x - name: Creating .npmrc run: | @@ -37,7 +37,7 @@ jobs: - name: Pre-publish uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2 with: - version: 6.32.6 + version: 8.9.0 - run: pnpm install - run: pnpm build @@ -49,10 +49,3 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - # - name: Github Release - # uses: release-drafter/release-drafter@v5.19.0 - # with: - # config-name: release-drafter.yml - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}