diff options
author | Owen Rudge <owen@owenrudge.net> | 2021-01-14 09:08:02 +0000 |
---|---|---|
committer | Owen Rudge <owen@owenrudge.net> | 2021-01-14 09:30:16 +0000 |
commit | 4f5990fa26574ad497d4286ab1acdb316619cded (patch) | |
tree | 102fd842c80b76101bf2920ca21a6632276bca0a /.github/workflows | |
parent | 516e8633955840b44fd5329d872c9bfcd455012a (diff) | |
download | openttd-4f5990fa26574ad497d4286ab1acdb316619cded.tar.xz |
Fix: Remove .sha256 files from macOS builds
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d1eb1b525..53222a806 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -452,6 +452,10 @@ jobs: make -j$(sysctl -n hw.logicalcpu) package echo "::endgroup::" + # Remove the sha256 files CPack generates; we will do this ourself at + # the end of this workflow. + rm -f bundles/*.sha256 + - name: Install gon env: HOMEBREW_NO_AUTO_UPDATE: 1 |