Skip to content

Commit

Permalink
Fix release verification
Browse files Browse the repository at this point in the history
Fixes #1437
  • Loading branch information
iwahbe committed Dec 11, 2024
1 parent 6b0615b commit a42941e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .ci-mgmt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ actions:
pulumiConvert: 1
registryDocs: true
releaseVerification:
nodejs: simple/ts
python: simple/py
dotnet: simple/csharp
go: simple/go
nodejs: examples/simple/ts
python: examples/simple/py
dotnet: examples/simple/csharp
go: examples/simple/go
8 changes: 4 additions & 4 deletions .github/workflows/verify-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,28 +75,28 @@ jobs:
uses: pulumi/verify-provider-release@v1
with:
runtime: nodejs
directory: simple/ts
directory: examples/simple/ts
provider: random
providerVersion: ${{ inputs.providerVersion }}
- name: Verify python release
uses: pulumi/verify-provider-release@v1
with:
runtime: python
directory: simple/py
directory: examples/simple/py
provider: random
providerVersion: ${{ inputs.providerVersion }}
- name: Verify dotnet release
uses: pulumi/verify-provider-release@v1
with:
runtime: dotnet
directory: simple/csharp
directory: examples/simple/csharp
provider: random
providerVersion: ${{ inputs.providerVersion }}
- name: Verify go release
uses: pulumi/verify-provider-release@v1
if: inputs.skipGoSdk == false
with:
runtime: go
directory: simple/go
directory: examples/simple/go
provider: random
providerVersion: ${{ inputs.providerVersion }}

0 comments on commit a42941e

Please sign in to comment.