From f5e696bd41a8d82d798d2f25ec67b1d4d19a5663 Mon Sep 17 00:00:00 2001 From: Conicaw Date: Mon, 24 Jul 2023 17:21:32 -0500 Subject: [PATCH] ci(release): fix release steps Fix release steps --- .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 1dbf6a6..8db485a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,6 +10,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v3.5.3 + - name: Setup Node.js uses: actions/setup-node@v3.7.0 with: @@ -18,9 +21,6 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Checkout - uses: actions/checkout@v3.5.3 - - name: Install dependencies run: npm ci