diff options
author | Chris Robinson <[email protected]> | 2022-12-15 18:40:38 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-12-15 18:40:38 -0800 |
commit | e1f3d5c41108e7f0a116dbb8f6c706f4c9634f8d (patch) | |
tree | 09983edcf9f74610436b603585ff5110d92ccec1 | |
parent | fcf4e6005194e4ee61ce8215f7fe18cc528eea0a (diff) |
Include the router in the github actions archive
-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 |