From 59f0337380db0bc324c574b11e3dc78992c02ba3 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee Date: Mon, 8 Jan 2024 04:52:36 +0000 Subject: [PATCH] fix: move run line to appropriate blocks --- .github/workflows/build_artifacts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_artifacts.yml b/.github/workflows/build_artifacts.yml index 4ae8fd9..679528c 100644 --- a/.github/workflows/build_artifacts.yml +++ b/.github/workflows/build_artifacts.yml @@ -60,8 +60,8 @@ jobs: run: tar -czf bin/uad-ng${{ matrix.update_name }}-${{ matrix.build_target }}${{ matrix.renderer }}{.tar.gz,} - name: Create checksums for binaries and archives [Windows] if: matrix.os == 'windows-latest' - - name: Create checksums for binaries and archives [Others] run: sha256sum bin/uad-ng-${{ matrix.build_target }}${{ matrix.renderer }}.exe | tee bin/uad-ng-${{ matrix.build_target }}${{ matrix.renderer }}-checksum.txt + - name: Create checksums for binaries and archives [Others] if: matrix.os != 'windows-latest' run: > sha256sum bin/uad-ng${{ matrix.update_name }}-${{ matrix.build_target }}${{ matrix.renderer }} | tee bin/uad-ng${{ matrix.update_name }}-${{ matrix.build_target }}${{ matrix.renderer }}-checksum