Skip to content

Commit

Permalink
Minor update windows-ci and appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmgoossens committed Nov 12, 2023
1 parent 98e82ad commit 8440d91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ jobs:
cd Sonnet\MSVisualStudio\v17\SonnetTest\bin\x64\Release\net6.0\
.\SonnetTest.exe
- name: Create asset package
if: ${{ github.ref_name == 'master' }}
- name: Create asset package for master or stable
if: ${{ ( github.ref_name == 'master' ) || startsWith(github.ref_name, 'stable/' ) }}
shell: cmd
run: |
mkdir package\x64\net6.0
Expand Down
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ after_test:
- copy README.txt package\.
- copy THIRD-PARTY-LICENSE.txt package\.
- copy examples\Example5.cs package\.
- 7z a -tzip -r "c:\projects\sonnet\%RELEASE_NAME%-bin.zip" package\*
- cd package
- 7z a -tzip -r "c:\projects\sonnet\%RELEASE_NAME%-bin.zip" *
- cd ..
- if not "%sonar_token%"=="" ( SonarScanner.MSBuild.exe end /d:"sonar.login=%sonar_token%" )

artifacts:
Expand Down

0 comments on commit 8440d91

Please sign in to comment.