Skip to content

Commit 683800a

Browse files
committed
Use tag as name if not provided
1 parent 44e1483 commit 683800a

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

appveyor.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,21 @@ test_script:
3535
- tools\test.cmd -v
3636

3737
artifacts:
38+
- path: bin\$(configuration)\vswhere.exe
39+
name: vswhere
40+
3841
- path: bin\$(configuration)
3942
type: zip
4043

44+
deploy:
45+
- provider: GitHub
46+
auth_token:
47+
secure: 5K94QY8dHKlbjvlBpQaXwAkmDf+LQE3g5WlU9snnNMjDjf0UT4xDoOBCLWcmwZOm
48+
artifact: vswhere
49+
prerelease: true
50+
on:
51+
# Signed releases will come from VSTS on master
52+
branch: develop
53+
configuration: Release
54+
4155
# vim: set ai et st=2 sts=2 sw=2:

tools/Publish-Release.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ if ($Commit) {
6565

6666
if ($Name) {
6767
$values.name = $Name
68+
} else {
69+
$values.name = $Tag
6870
}
6971

7072
if ($Description) {

0 commit comments

Comments
 (0)