v1.9.2 #32
Workflow file for this run
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
name: MSBuild | |
on: | |
release: | |
types: [published] | |
env: | |
SOLUTION_FILE_PATH: . | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add MSBuild to PATH | |
uses: microsoft/setup-msbuild@v1 | |
- name: Build DLL Win32 | |
run: msbuild -m -target:VietTypeATL:Rebuild -p:Configuration=Release -p:Platform=Win32 . | |
- name: Build DLL x64 | |
run: msbuild -m -target:VietTypeATL:Rebuild -p:Configuration=Release -p:Platform=x64 . | |
- name: Build Config | |
run: msbuild -m -target:VietTypeConfig:Rebuild -p:Configuration=Release -p:Platform=Win32 . | |
- name: Build Win32 | |
run: msbuild -m -target:VietTypeSetup:Rebuild -p:Configuration=Release -p:Platform=Win32 . | |
- name: Build x64 | |
run: msbuild -m -target:VietTypeSetup:Rebuild -p:Configuration=Release -p:Platform=x64 . | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: VietTypeSetup/bin/Release/*.msi |