Skip to content

Commit

Permalink
Create a separate sha256 checksum file for each platform.
Browse files Browse the repository at this point in the history
  • Loading branch information
cosinekitty committed Jan 13, 2025
1 parent e6ed452 commit 64a78cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
export PLUGIN_DIR=$GITHUB_WORKSPACE
pushd ${{ env.rack-plugin-toolchain-dir }}
make plugin-build-${{ matrix.platform }}
cd plugin-build && sha256sum *.vcvplugin > checksums_winlin.txt && cd ..
cd plugin-build && sha256sum *.vcvplugin > checksums_${{ matrix.platform }}.txt && cd ..
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
export CROSS_COMPILE=$CROSS_COMPILE_TARGET_${{ matrix.platform }}
make dep
make dist
cd dist && shasum -a 256 *.vcvplugin > checksums_mac.txt && cd ..
cd dist && shasum -a 256 *.vcvplugin > checksums_$${{ matrix.platform }}.txt && cd ..
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 64a78cb

Please sign in to comment.