Skip to content

Commit 309379c

Browse files
committed
fix(pulumi): explicit repo path in plugin install URL
Pulumi's 'github://api.github.com/{owner}' URL form derives the repo as '{owner}/pulumi-{plugin-name}', i.e. it expects 'numberly/pulumi-mica'. Our actual repo is 'numberly/terraform-provider-mica' so the implicit form 404s. Use the two-segment form 'github://api.github.com/{owner}/{repo}' to point at the right release source. Apply the fix to both the goreleaser-rendered release notes and the pulumi/README.md install snippet.
1 parent 1c514b4 commit 309379c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pulumi/.goreleaser.pulumi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ release:
7373
### Installation
7474
7575
```bash
76-
pulumi plugin install resource mica {{ .Version }} --server github://api.github.com/numberly
76+
pulumi plugin install resource mica {{ .Version }} --server github://api.github.com/numberly/terraform-provider-mica
7777
```
7878
7979
### Python SDK

pulumi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A Pulumi package for managing resources on Pure Storage FlashBlade® arrays. Bri
1818
Install the provider binary from GitHub Releases:
1919

2020
```bash
21-
pulumi plugin install resource mica 2.22.3-pulumi.alpha --server github://api.github.com/numberly
21+
pulumi plugin install resource mica 2.22.6-pulumi.beta --server github://api.github.com/numberly/terraform-provider-mica
2222
```
2323

2424
Pulumi bridge releases are tagged `v{X.Y.Z}-pulumi[.suffix]` (valid SemVer prerelease). Replace `2.22.3-pulumi.alpha` with any published version, dropping the leading `v`.

0 commit comments

Comments
 (0)