diff options
| author | Yong He <yonghe@outlook.com> | 2022-06-13 18:50:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-13 18:50:35 -0700 |
| commit | ebcda2ec8b1cfb54f52329bb1134511ca4d4dbff (patch) | |
| tree | 7c5eb2a4c25487fd5e2214faf7ba78f86f5961d1 /.github/workflows/macos.yml | |
| parent | a5422d4f8c43962147696e3b6b22d586133b9a4f (diff) | |
Upload artifact in macos build. (#2271)
* Update macos.yml
* fix.
* Create macos release.
* fix.
* fix
* Update release-macos.yml
* Update release-macos.yml
* Update macos.yml
Diffstat (limited to '.github/workflows/macos.yml')
| -rw-r--r-- | .github/workflows/macos.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index ba92715fc..2feb44712 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -30,10 +30,19 @@ jobs: CONFIGURATION=${{matrix.configuration}} ARCH=${{matrix.platform}} source ./github_macos_build.sh + - uses: actions/upload-artifact@v3 + with: + name: slang-build-${{matrix.configuration}}-${{matrix.platform}}-${{matrix.compiler}} + path: | + bin/**/slangc + bin/**/slangd + bin/**/libslang.dylib + bin/**/libslang-llvm.dylib + bin/**/libslang-glslang.dylib - name: test run: CONFIGURATION=${{matrix.configuration}} CC=${{matrix.compiler}} ARCH=${{matrix.platform}} source ./github_test.sh -
\ No newline at end of file + |
