summaryrefslogtreecommitdiffstats
path: root/.github/workflows/reVC_msvc_amd64.yml
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-02-03 20:28:34 +0100
committerwithmorten <morten.with@gmail.com>2021-02-03 20:28:34 +0100
commitedc3c48e05ed5c466686075dac0f1bdf8093b7bf (patch)
tree483a15f5297597688f8892bf228beb9c90605a13 /.github/workflows/reVC_msvc_amd64.yml
parentMerge pull request #1018 from erorcun/miami (diff)
downloadre3-edc3c48e05ed5c466686075dac0f1bdf8093b7bf.tar
re3-edc3c48e05ed5c466686075dac0f1bdf8093b7bf.tar.gz
re3-edc3c48e05ed5c466686075dac0f1bdf8093b7bf.tar.bz2
re3-edc3c48e05ed5c466686075dac0f1bdf8093b7bf.tar.lz
re3-edc3c48e05ed5c466686075dac0f1bdf8093b7bf.tar.xz
re3-edc3c48e05ed5c466686075dac0f1bdf8093b7bf.tar.zst
re3-edc3c48e05ed5c466686075dac0f1bdf8093b7bf.zip
Diffstat (limited to '.github/workflows/reVC_msvc_amd64.yml')
-rw-r--r--.github/workflows/reVC_msvc_amd64.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/reVC_msvc_amd64.yml b/.github/workflows/reVC_msvc_amd64.yml
index 71e0ff1d..49a266b7 100644
--- a/.github/workflows/reVC_msvc_amd64.yml
+++ b/.github/workflows/reVC_msvc_amd64.yml
@@ -48,14 +48,22 @@ jobs:
- name: Build
run: |
msbuild -m build/reVC.sln /property:Configuration=${{matrix.buildtype}} /property:Platform=${{matrix.platform}}
- - name: Pack artifacts
+ # - name: Pack artifacts
+ # run: |
+ # 7z a reVC_${{matrix.buildtype}}_${{matrix.platform}}.zip ./bin/${{matrix.platform}}/${{matrix.buildtype}}/*
+ - name: Move binaries to gamefiles
run: |
- 7z a reVC_${{matrix.buildtype}}_${{matrix.platform}}.zip ./bin/${{matrix.platform}}/${{matrix.buildtype}}/*
+ mv ./bin/${{matrix.platform}}/${{matrix.buildtype}}/reVC.exe ./gamefiles/
+ mv ./bin/${{matrix.platform}}/${{matrix.buildtype}}/reVC.pdb ./gamefiles/
+ - name: Move dynamic dependencies to gamefiles
+ run: |
+ mv ./vendor/mpg123/dist/Win64/libmpg123-0.dll ./gamefiles/
+ mv ./vendor/openal-soft/dist/Win64/OpenAL32.dll ./gamefiles/
- name: Upload artifact to actions
uses: actions/upload-artifact@v2
with:
name: reVC_${{matrix.buildtype}}_${{matrix.platform}}
- path: ./bin/${{matrix.platform}}/${{matrix.buildtype}}
+ path: ./gamefiles/*
# - name: Upload artifact to Bintray
# uses: hpcsc/upload-bintray-docker-action@v1
# with: