summaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-07-11 00:00:59 +0800
committerGitHub <noreply@github.com>2024-07-11 00:00:59 +0800
commit5c9ce374e63e5d050da5349f89dc60be0c47f1ac (patch)
tree8d7e64fc93ce7fcea141d2ff9c5bd478225b7337 /.github/workflows/release.yml
parent0e56999a573fada2cce6e94c21ef856cc88dc933 (diff)
A couple of small fixes to cmake releases (#4596)
* Correct windows file uploading * Include slang-llvm.so in releases * Neaten job names
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2fefe5bd9..5548c77b8 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -154,10 +154,10 @@ jobs:
cpack --preset "$config" -G ZIP
cpack --preset "$config" -G TGZ
triggering_ref=${{ github.ref_name }}
- base=$(pwd)/slang-${triggering_ref#v}-${{matrix.os}}-${{matrix.platform}}
- mv "$(pwd)/build/dist-${config}/slang.zip" "${base}.zip"
+ base=slang-${triggering_ref#v}-${{matrix.os}}-${{matrix.platform}}
+ mv --verbose "$(pwd)/build/dist-${config}/slang.zip" "${base}.zip"
echo "SLANG_BINARY_ARCHIVE_ZIP=${base}.zip" >> $GITHUB_OUTPUT
- mv "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz"
+ mv --verbose "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz"
echo "SLANG_BINARY_ARCHIVE_TAR=${base}.tar.gz" >> $GITHUB_OUTPUT
- name: File check