OCram85/DroneHelper
OCram85
/
DroneHelper
Archived
1
0
Fork 0

fix NuGet token lookup
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
OCram85 2022-07-13 16:01:46 +02:00
parent 94404f62cc
commit 96ae140414
Signed by: OCram85
GPG Key ID: 456940F03DE016E1
3 changed files with 6 additions and 6 deletions

View File

@ -134,8 +134,8 @@ steps:
image: mcr.microsoft.com/dotnet/sdk:6.0-focal image: mcr.microsoft.com/dotnet/sdk:6.0-focal
#failure: ignore #failure: ignore
environment: environment:
NexusToken: NuGetToken:
from_secret: NexusToken from_secret: PSGallery
commands: commands:
- | - |
pwsh -NonInteractive -c "& { pwsh -NonInteractive -c "& {

View File

@ -143,8 +143,8 @@ steps:
image: mcr.microsoft.com/dotnet/sdk:6.0-focal image: mcr.microsoft.com/dotnet/sdk:6.0-focal
#failure: ignore #failure: ignore
environment: environment:
NexusToken: NuGetToken:
from_secret: NexusToken from_secret: PSGallery
commands: commands:
- | - |
pwsh -NonInteractive -c "& { pwsh -NonInteractive -c "& {

View File

@ -35,9 +35,9 @@ function Invoke-Publish {
Expand-Archive @ExpandParams Expand-Archive @ExpandParams
$PublishParams = @{ $PublishParams = @{
Repository = 'Nexus' Repository = 'PSGallery'
Path = $Repo.Bin.ExpandPath Path = $Repo.Bin.ExpandPath
NuGetApiKey = $Env:NexusToken NuGetApiKey = $Env:NuGetToken
Verbose = $VerbosePreference Verbose = $VerbosePreference
ErrorAction = 'Stop' ErrorAction = 'Stop'
} }