-
Notifications
You must be signed in to change notification settings - Fork 8
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 #11 from devmrfitz/master
Release action added and build action fixed
- Loading branch information
Showing
2 changed files
with
54 additions
and
5 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
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,46 @@ | ||
name: Upload releases | ||
|
||
on: | ||
release: | ||
types: | ||
- created | ||
|
||
|
||
jobs: | ||
build_and_upload: | ||
runs-on: windows-2019 | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
name: Checkout Code | ||
|
||
- name: Setup MSBuild Path | ||
uses: microsoft/setup-msbuild@v1.1 | ||
with: | ||
vs-version: '[16.0,17.0)' | ||
|
||
- name: Setup NuGet | ||
uses: nuget/setup-nuget@v1 | ||
|
||
- name: Restore NuGet Packages | ||
run: nuget restore ccx_testsuite.sln | ||
|
||
- name: Build | ||
run: msbuild ccx_testsuite.sln /t:ccx_testsuite /p:Platform="x86" /p:Configuration=Release | ||
|
||
- name: Prepare artifact upload | ||
run: mkdir ./artifact; cp CCExtractorTester.exe ./artifact/CCExtractorTester.exe; cp testGenerations.dll ./artifact/testGenerations.dll; cp CommandLine.dll ./artifact/CommandLine.dll | ||
working-directory: CCExtractorTester\bin\Release\ | ||
|
||
- name: Archive Release | ||
uses: thedoctor0/zip-release@master | ||
with: | ||
type: 'zip' | ||
directory: 'CCExtractorTester\bin\Release\artifact' | ||
filename: 'CCExtractorTestSuite-${{ github.event.release.tag_name }}.zip' | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
CCExtractorTester\bin\Release\artifact\CCExtractorTestSuite-${{ github.event.release.tag_name }}.zip |