Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,19 @@ jobs:
- name: Obtain oggenc2.exe
run: >
curl https://www.rarewares.org/files/ogg/oggenc2.88-1.3.7-x64.zip --output oggenc.zip &&
unzip oggenc.zip -d .
unzip oggenc.zip -d bin/
shell: bash
- name: Build AV
run: msbuild build\VisualStudio\ArrowVortex.vcxproj /p:Configuration=Release /p:Platform=x64
- name: Collect into a directory
if: github.ref_name == 'beta'
run: |
mkdir AV
cp -r bin/{assets,noteskins,settings} AV
cp bin/ArrowVortex.exe oggenc2.exe AV
shell: bash
- name: Upload artifact
if: github.ref_name == 'beta'
uses: actions/upload-artifact@v4
with:
name: AV
path: AV/
path: |
bin/assets
bin/noteskins
bin/settings
bin/ArrowVortex.exe
bin/oggenc2.exe
if-no-files-found: error