Skip to content

Commit af97b92

Browse files
authored
update nightly publish path (#6361)
1 parent 4363f4c commit af97b92

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.vsts-signed.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
displayName: Publish nightly package to MyGet
8787
inputs:
8888
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)'
9090
condition: succeeded()
9191

9292
# Package publish

setup/publish-assets.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.SYNOPSIS
33
Publishes the VSIX package on MyGet.
44
5-
.PARAMETER binariesPath
5+
.PARAMETER artifactsPath
66
The root directory where the build outputs are written.
77
88
.PARAMETER branchName
@@ -14,7 +14,7 @@ The API key used to authenticate with MyGet.
1414
#>
1515

1616
Param(
17-
[string]$binariesPath = $null,
17+
[string]$artifactsPath = $null,
1818
[string]$branchName = $null,
1919
[string]$apiKey = $null,
2020
[string]$configuration = $null
@@ -41,7 +41,7 @@ try {
4141
}
4242

4343
$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"
4545

4646
Write-Host " Uploading '$vsix' to '$requestUrl'."
4747

0 commit comments

Comments
 (0)