From 2500905aac728a2323a587f3de337658a6026063 Mon Sep 17 00:00:00 2001 From: Arc-E-Tect Date: Sun, 21 Jul 2024 22:44:05 +0200 Subject: [PATCH] fix: first checkout the branch then download the file --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8d5771..07b59db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,17 +112,17 @@ jobs: if: ${{ needs.process_release.outputs.new_tag_version != '' }} runs-on: ubuntu-latest steps: - - name: Download updated file - uses: actions/download-artifact@v4 - with: - name: updated-file - - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 persist-credentials: false + - name: Download updated file + uses: actions/download-artifact@v4 + with: + name: updated-file + - name: cache NPM uses: actions/cache@v4.0.2 id: npm-cache