diff options
| author | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-27 22:56:04 +0300 |
|---|---|---|
| committer | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-27 22:56:04 +0300 |
| commit | 9cb82ee56c8866c60a9531eb5cb9c0a1db064e6d (patch) | |
| tree | 7e382baf4e0bfd9ba42e7f1ea4bbed4da3b17941 /.github/workflows | |
| parent | 60ea18c609e81bb163cf8e84518c7f9bec903460 (diff) | |
Fix artifact download
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build-on-release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-on-release.yml b/.github/workflows/build-on-release.yml index e28923a..0fe7c37 100644 --- a/.github/workflows/build-on-release.yml +++ b/.github/workflows/build-on-release.yml @@ -110,7 +110,7 @@ jobs: - name: Download MacOS artifact uses: actions/download-artifact@v2 with: - name: krr-macos-latest-${{ github.ref_name }}.zip + name: krr-macos-latest-${{ github.ref_name }} - name: Calculate hash run: echo "MAC_BUILD_HASH=$(sha256sum krr-macos-latest-${{ github.ref_name }}.zip | awk '{print $1}')" >> $GITHUB_ENV @@ -124,7 +124,7 @@ jobs: - name: Download Linux artifact uses: actions/download-artifact@v2 with: - name: krr-ubuntu-latest-${{ github.ref_name }}.zip + name: krr-ubuntu-latest-${{ github.ref_name }} - name: Calculate hash run: echo "LINUX_BUILD_HASH=$(sha256sum krr-ubuntu-latest-${{ github.ref_name }}.zip | awk '{print $1}')" >> $GITHUB_ENV |
