summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorkaizhangNV <149626564+kaizhangNV@users.noreply.github.com>2024-06-27 16:52:23 -0700
committerGitHub <noreply@github.com>2024-06-27 16:52:23 -0700
commit323fdff4544ac3b640bdc617d7f7d64ab56fbf5a (patch)
treef059afc39fe17728a5e9ad1a154ad64fc0bc2df8 /.github/workflows
parentf5acb6b987609cc6c1d859120cd327c57c344803 (diff)
Enable upload asset for old glibc build (#4501)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release-linux-glibc-2-17.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/release-linux-glibc-2-17.yml b/.github/workflows/release-linux-glibc-2-17.yml
index 98e895d7e..128a13d45 100644
--- a/.github/workflows/release-linux-glibc-2-17.yml
+++ b/.github/workflows/release-linux-glibc-2-17.yml
@@ -51,11 +51,11 @@ jobs:
tar -czf ${SLANG_BINARY_ARCHIVE_TAR} bin/*/*/slangc bin/*/*/slangd bin/*/*/libslang.so bin/*/*/libslang-glslang.so bin/*/*/libgfx.so bin/*/*/libslang-llvm.so docs/*.md README.md LICENSE slang.h slang-com-helper.h slang-com-ptr.h slang-tag-version.h slang-gfx.h prelude/*.h
echo "SLANG_BINARY_ARCHIVE=${SLANG_BINARY_ARCHIVE}" >> $GITHUB_OUTPUT
echo "SLANG_BINARY_ARCHIVE_TAR=${SLANG_BINARY_ARCHIVE_TAR}" >> $GITHUB_OUTPUT
- # - name: UploadBinary
- # uses: softprops/action-gh-release@v1
- # with:
- # files: |
- # ${{ steps.build.outputs.SLANG_BINARY_ARCHIVE }}
- # ${{ steps.build.outputs.SLANG_BINARY_ARCHIVE_TAR }}
- # env:
- # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: UploadBinary
+ uses: softprops/action-gh-release@v1
+ with:
+ files: |
+ ${{ steps.build.outputs.SLANG_BINARY_ARCHIVE }}
+ ${{ steps.build.outputs.SLANG_BINARY_ARCHIVE_TAR }}
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}