diff options
-rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b1160f2..ca40ec1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,10 +75,20 @@ jobs: run: | cmake --build build --config ${{matrix.config.build_type}} + - name: Create Archive + if: ${{ matrix.config.os == 'windows-latest' }} + shell: bash + run: | + cd build + mkdir archive + mkdir archive/router + cp ${{github.workspace}}/build/${{matrix.config.build_type}}/soft_oal.dll archive + cp ${{github.workspace}}/build/${{matrix.config.build_type}}/OpenAL32.dll archive/router + - name: Upload Archive # Upload package as an artifact of this workflow. uses: actions/[email protected] if: ${{ matrix.config.os == 'windows-latest' }} with: name: soft_oal-${{matrix.config.name}} - path: ${{github.workspace}}/build/${{matrix.config.build_type}}/soft_oal.dll + path: build/archive |