Skip to content

Commit

Permalink
add windows relase
Browse files Browse the repository at this point in the history
  • Loading branch information
patsh90 committed Sep 6, 2023
1 parent 391ae84 commit 57e9f41
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-windows-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: build release windows

on:
workflow_dispatch:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-latest']
fail-fast: false
steps:
- uses: actions/checkout@v2

- name: Add msbuild to PATH
uses: microsoft/[email protected]
with:
msbuild-architecture: x64

- name: run build
run: |
git submodule update --init --recursive
./bootstrap
cd build
cmake -DCMAKE_BUILD_TYPE=RELEASE ..
msbuild ALL_BUILD.vcxproj /t:Build /p:Configuration=Release
- name: upload artifacts
uses: actions/upload-artifact@v3
with:
name: release-packages
path: ./build/sqlcheck.*

0 comments on commit 57e9f41

Please sign in to comment.