-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #211 from Gumball2415/main
Add Github Actions builds for published releases
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: build-artifact-publish | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
build-matrix-publish: | ||
runs-on: windows-2022 | ||
strategy: | ||
matrix: | ||
platform: [x64, Win32] | ||
configuration: [Release, Debug] | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Build program | ||
shell: cmd | ||
run: | | ||
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsamd64_x86.bat" | ||
call msbuild -m:5 -nologo -p:Configuration="${{ matrix.configuration }}" -p:Platform="${{ matrix.platform }}" | ||
if %ERRORLEVEL%==1 exit %ERRORLEVEL% | ||
call release.bat ${{ matrix.configuration }} ${{ matrix.platform }} | ||
- name: Upload binaries | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: build-artifacts | ||
path: distribute/*.7z |