From 6eeeefcec42cc463b47aae8bac24e18b96a25dba Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Thu, 22 Feb 2024 10:32:15 +0300 Subject: [PATCH] [ci] fix commit_long_sha passing --- .github/workflows/update-build-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-build-release.yml b/.github/workflows/update-build-release.yml index 6a414a0..18d0c3f 100644 --- a/.github/workflows/update-build-release.yml +++ b/.github/workflows/update-build-release.yml @@ -68,13 +68,13 @@ jobs: ref: ${{ (needs.update_packages.outputs.commit_long_sha || '') }} upload-release: - needs: build + needs: [build, update_packages] runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 with: - ref: ${{ (needs.build.needs.update_packages.outputs.commit_long_sha || '') }} + ref: ${{ (needs.update_packages.outputs.commit_long_sha || '') }} - name: Download artifact uses: actions/download-artifact@v4