Skip to content

Commit

Permalink
Use tag as name if not provided
Browse files Browse the repository at this point in the history
  • Loading branch information
heaths committed Oct 13, 2017
1 parent 44e1483 commit 683800a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,21 @@ test_script:
- tools\test.cmd -v

artifacts:
- path: bin\$(configuration)\vswhere.exe
name: vswhere

- path: bin\$(configuration)
type: zip

deploy:
- provider: GitHub
auth_token:
secure: 5K94QY8dHKlbjvlBpQaXwAkmDf+LQE3g5WlU9snnNMjDjf0UT4xDoOBCLWcmwZOm
artifact: vswhere
prerelease: true
on:
# Signed releases will come from VSTS on master
branch: develop
configuration: Release

# vim: set ai et st=2 sts=2 sw=2:
2 changes: 2 additions & 0 deletions tools/Publish-Release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ if ($Commit) {

if ($Name) {
$values.name = $Name
} else {
$values.name = $Tag
}

if ($Description) {
Expand Down

0 comments on commit 683800a

Please sign in to comment.