diff options
| author | Yong He <yonghe@outlook.com> | 2023-10-26 15:36:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-26 15:36:25 -0700 |
| commit | aed3bd60c0b17403c079dcb0b64edf09439375cf (patch) | |
| tree | 03c86965ca13055eec3135e58dd1d7d4cf1f0d4b /.github/workflows/macos.yml | |
| parent | 02e6c6b52d79c1da22d73f56762a550b45f90935 (diff) | |
Remove use of `::set-output` in github actions. (#3293)
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to '.github/workflows/macos.yml')
| -rw-r--r-- | .github/workflows/macos.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a89030d5b..eada308c9 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -52,7 +52,7 @@ jobs: 7z a ${SLANG_BINARY_ARCHIVE} bin/*/*/slangc 7z a ${SLANG_BINARY_ARCHIVE} bin/*/*/slangd 7z a ${SLANG_BINARY_ARCHIVE} docs/*.md - echo "::set-output name=SLANG_BINARY_ARCHIVE::${SLANG_BINARY_ARCHIVE}" + echo "SLANG_BINARY_ARCHIVE=${SLANG_BINARY_ARCHIVE}" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 with: name: slang-build-${{matrix.configuration}}-${{matrix.targetPlatform}}-${{matrix.compiler}} |
