We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c95983 commit c46c9f4Copy full SHA for c46c9f4
.github/workflows/sokatoa-create-release-from-tag.yml
@@ -60,9 +60,12 @@ jobs:
60
shell: bash
61
run: |
62
mkdir ${{ github.event.inputs.RELEASE_TAG }}
63
- ls -R build
64
cp build/bin/dxc ${{ github.event.inputs.RELEASE_TAG }}
65
- cp build/lib/libdxcompiler.so ${{ github.event.inputs.RELEASE_TAG }}
+ if [ "$RUNNER_OS" == "Linux" ]; then
+ cp build/lib/libdxcompiler.so ${{ github.event.inputs.RELEASE_TAG }}
66
+ else
67
+ cp build/lib/libdxcompiler.dylib ${{ github.event.inputs.RELEASE_TAG }}
68
+ fi
69
tar -czvf ${{ github.event.inputs.RELEASE_TAG }}_${{ runner.os }}.tar.gz -C ${{ github.event.inputs.RELEASE_TAG }} `ls -A ${{ github.event.inputs.RELEASE_TAG }}`
70
71
- name: Archive results
0 commit comments