diff options
author | Chris Robinson <[email protected]> | 2022-12-15 19:00:37 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-12-15 19:00:37 -0800 |
commit | 2bd11bafa4b36977c9d467d5e2d735a8eba1b336 (patch) | |
tree | 0b056186bdaa7fe203d789b2de1db37d2c4a5d33 /.github | |
parent | 522a09c50b54e7a5cb2d9b59a5d6e66b90e4d3a9 (diff) |
Fix paths for creating the archive
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 056f8fde..d3bb619d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,8 +84,8 @@ jobs: 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 + cp ${{matrix.config.build_type}}/soft_oal.dll archive + cp ${{matrix.config.build_type}}/OpenAL32.dll archive/router - name: Upload Archive # Upload package as an artifact of this workflow. |