File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 86
86
displayName : Publish nightly package to MyGet
87
87
inputs :
88
88
scriptName : ' setup\publish-assets.ps1'
89
- arguments : ' -binariesPath artifacts\bin -configuration $(BuildConfiguration) -branchName $(Build.SourceBranch) -apiKey $(FSharp.MyGetApiKey)'
89
+ arguments : ' -artifactsPath artifacts -configuration $(BuildConfiguration) -branchName $(Build.SourceBranch) -apiKey $(FSharp.MyGetApiKey)'
90
90
condition : succeeded()
91
91
92
92
# Package publish
Original file line number Diff line number Diff line change 2
2
. SYNOPSIS
3
3
Publishes the VSIX package on MyGet.
4
4
5
- . PARAMETER binariesPath
5
+ . PARAMETER artifactsPath
6
6
The root directory where the build outputs are written.
7
7
8
8
. PARAMETER branchName
@@ -14,7 +14,7 @@ The API key used to authenticate with MyGet.
14
14
#>
15
15
16
16
Param (
17
- [string ]$binariesPath = $null ,
17
+ [string ]$artifactsPath = $null ,
18
18
[string ]$branchName = $null ,
19
19
[string ]$apiKey = $null ,
20
20
[string ]$configuration = $null
41
41
}
42
42
43
43
$branchName = $branchName.Replace (" /" , " _" ) # can't have slashes in the branch name
44
- $vsix = Join-Path $binariesPath " VisualFSharpFull \$configuration \net46 \VisualFSharpFull.vsix"
44
+ $vsix = Join-Path $artifactsPath " VSSetup \$configuration \Insertion \VisualFSharpFull.vsix"
45
45
46
46
Write-Host " Uploading '$vsix ' to '$requestUrl '."
47
47
You can’t perform that action at this time.
0 commit comments