Skip to content

Commit 86d84a1

Browse files
committed
fixing dotnet ci
1 parent 86b9908 commit 86d84a1

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/images/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

.github/workflows/release.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -124,18 +124,15 @@ jobs:
124124
run: |
125125
# Clean any existing artifacts
126126
dotnet clean
127-
128127
# Restore packages
129128
dotnet restore
130-
131-
# Build Release configuration
132-
dotnet build --configuration Release
133-
134-
# Pack without rebuilding
129+
dotnet build --configuration Release -v detailed
135130
dotnet pack --configuration Release --no-build -o out
136-
137-
# Push to NuGet
138-
dotnet nuget push out/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_TOKEN }}
131+
dotnet nuget push out/*.nupkg \
132+
--source https://api.nuget.org/v3/index.json \
133+
--api-key ${{ secrets.NUGET_TOKEN }} \
134+
--skip-duplicate \
135+
-v detailed
139136
env:
140137
DOTNET_CLI_TELEMETRY_OPTOUT: 1
141138
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1

provider/resources.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func Provider() tfbridge.ProviderInfo {
3636
Name: "pgedge",
3737
DisplayName: "pgEdge",
3838
Publisher: "pgEdge",
39-
LogoURL: "https://pgedge-public-assets.s3.amazonaws.com/product/images/pgedge_mark.svg",
39+
LogoURL: "https://raw.githubusercontent.com/pgEdge/pulumi-pgedge/main/.github/images/logo.svg",
4040
PluginDownloadURL: "github://api.github.com/pgEdge/pulumi-pgedge",
4141
Description: "A Pulumi package for creating and managing pgedge cloud resources.",
4242
Keywords: []string{"pulumi", "pgedge", "category/cloud", "category/database"},

0 commit comments

Comments
 (0)