From 8a7cb934b7c3eafd7d86c264a9358732b605379b Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 3 May 2024 21:08:57 +0700 Subject: [PATCH] fix: publish npm bin packages (#115) --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43f1212..1d76bdd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,20 +22,20 @@ jobs: - build_and_test steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 token: ${{ secrets.CI_GITHUB_TOKEN }} persist-credentials: false - name: Setup LTS Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "lts/*" cache: "npm" - name: Install dependencies run: npm ci - name: Download all artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: artifacts - name: Move artifacts