fix: separate creating checksums for platforms

This commit is contained in:
Himadri Bhattacharjee 2024-01-08 04:51:17 +00:00
commit 7ef7e0eaae

View file

@ -58,8 +58,9 @@ jobs:
- name: Tarball Linux/MacOS binary
if: matrix.os != 'windows-latest'
run: tar -czf bin/uad-ng${{ matrix.update_name }}-${{ matrix.build_target }}${{ matrix.renderer }}{.tar.gz,}
- name: Create checksums for binaries and archives
- 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
if: matrix.os != 'windows-latest'
run: >