Skip to content

Commit

Permalink
Fix LogoURL so it points to a valid png (#11)
Browse files Browse the repository at this point in the history
* Fix LogoURL so it points to a valid png

* Remove checked in logo

* update schema
  • Loading branch information
iwahbe authored May 16, 2024
1 parent f2bb01c commit 033042d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,6 @@ sdk/java/gradle
sdk/java/gradlew
sdk/java/gradlew.bat

sdk/python/venv
sdk/python/venv

sdk/dotnet/logo.png
2 changes: 1 addition & 1 deletion provider/cmd/pulumi-resource-meraki/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"license": "Apache-2.0",
"attribution": "This Pulumi package is based on the [`meraki` Terraform Provider](https://github.com/cisco-open/terraform-provider-meraki).",
"repository": "https://github.com/pulumi/pulumi-meraki",
"logoUrl": "https://raw.githubusercontent.com/pulumi/pulumi-meraki/main/docs/meraki.png",
"logoUrl": "https://raw.githubusercontent.com/pulumi/pulumi-meraki/assets/assets/meraki.png",
"pluginDownloadURL": "github://api.github.com/pulumi/pulumi-meraki",
"publisher": "pulumi",
"meta": {
Expand Down
9 changes: 3 additions & 6 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,9 @@ func Provider() tfbridge.ProviderInfo {
// would like to be shown in the Pulumi Registry if this package is published
// there.
Publisher: "pulumi",
// LogoURL is optional but useful to help identify your package in the Pulumi Registry
// if this package is published there.
//
// You may host a logo on a domain you control or add an SVG logo for your package
// in your repository and use the raw content URL for that file as your logo URL.
LogoURL: "https://raw.githubusercontent.com/pulumi/pulumi-meraki/main/docs/meraki.png",
// LogoURL points to the assets/meraki.png file on the assets branch of
// this repo.
LogoURL: "https://raw.githubusercontent.com/pulumi/pulumi-meraki/assets/assets/meraki.png",
// PluginDownloadURL is an optional URL used to download the Provider
// for use in Pulumi programs
// e.g https://github.com/org/pulumi-provider-name/releases/
Expand Down
1 change: 0 additions & 1 deletion sdk/dotnet/logo.png

This file was deleted.

0 comments on commit 033042d

Please sign in to comment.