Skip to content

Commit

Permalink
Add GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmacha committed Jun 29, 2023
1 parent 424b2ea commit 897fcde
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CMake Build
on:
- push
jobs:
build:
name: Visual Studio 2022
runs-on: windows-2022
steps:
- uses: lukka/get-cmake@latest
- uses: lukka/run-cmake@v10
with:
buildPreset: 'x86-release'
buildPresetAdditionalArgs: "['--target install']"
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist-without-markdown
path: |
out/install/x86-release/bin/*.dll
out/install/x86-release/zBassMusic.vdf

0 comments on commit 897fcde

Please sign in to comment.