We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9bfbe6 commit c5f5183Copy full SHA for c5f5183
1 file changed
.github/workflows/main.yml
@@ -11,3 +11,14 @@ jobs:
11
with:
12
vcpkgDirectory: '${{ github.workspace }}/vcpkg'
13
vcpkgArguments: '@${{ github.workspace }}/vcpkg.txt'
14
+ - name: Setup MSBuild
15
+ uses: microsoft/setup-msbuild@v1.0.0
16
+ - name: Copy Dependencies
17
+ run: 'cp ${{ github.workspace }}/vcpkg/packages ${{ github.workspace }}/dependencies'
18
+ - name: Build DLL
19
+ run: 'msbuild SimpleGraphic.vcxproj /p:configuration=release /p:platform=win32'
20
+ - name: Archive DLL
21
+ uses: actions/upload-artifact@v1.0.0
22
+ with:
23
+ name: SimpleGraphic.dll
24
+ path: '${{ github.workspace }}/Release/SimpleGraphic.dll'
0 commit comments