summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-07-11 00:07:39 +0800
committerGitHub <noreply@github.com>2024-07-11 00:07:39 +0800
commitf4fac59372cf30f39fe508e01edf670b509aea73 (patch)
treebc1b9b7a36be8c57e1380237271b6c86c78e5ec5 /.github
parent5c9ce374e63e5d050da5349f89dc60be0c47f1ac (diff)
Cope with bsd coreutils on osx in release script (#4597)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 5548c77b8..16755b82e 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -155,9 +155,9 @@ jobs:
cpack --preset "$config" -G TGZ
triggering_ref=${{ github.ref_name }}
base=slang-${triggering_ref#v}-${{matrix.os}}-${{matrix.platform}}
- mv --verbose "$(pwd)/build/dist-${config}/slang.zip" "${base}.zip"
+ mv "$(pwd)/build/dist-${config}/slang.zip" "${base}.zip"
echo "SLANG_BINARY_ARCHIVE_ZIP=${base}.zip" >> $GITHUB_OUTPUT
- mv --verbose "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz"
+ mv "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz"
echo "SLANG_BINARY_ARCHIVE_TAR=${base}.tar.gz" >> $GITHUB_OUTPUT
- name: File check