Skip to content

Commit

Permalink
Enable dotnet and nodejs verification (#1454)
Browse files Browse the repository at this point in the history
Following releases to verify-provider-release, these should now be
functional.

Manual verification run succeeded:
https://github.com/pulumi/pulumi-random/actions/runs/12299185014
  • Loading branch information
danielrbradley authored Dec 12, 2024
1 parent 3c494b6 commit 3d6ad9b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 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: examples/simple/ts # TODO[https://github.com/pulumi/verify-provider-release/issues/73]
nodejs: examples/simple/ts
python: examples/simple/py
# dotnet: examples/simple/csharp # TODO[https://github.com/pulumi/verify-provider-release/issues/75]
dotnet: examples/simple/csharp
go: examples/simple/go
14 changes: 14 additions & 0 deletions .github/workflows/verify-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,13 @@ jobs:
uses: ./.github/actions/setup-tools
with:
tools: pulumicli, nodejs, python, dotnet, go, java
- name: Verify nodejs release
uses: pulumi/verify-provider-release@v1
with:
runtime: nodejs
directory: examples/simple/ts
provider: random
providerVersion: ${{ inputs.providerVersion }}
- name: Verify python release
uses: pulumi/verify-provider-release@v1
with:
Expand All @@ -87,6 +94,13 @@ jobs:
provider: random
providerVersion: ${{ inputs.providerVersion }}
packageVersion: ${{ inputs.pythonVersion || inputs.providerVersion }}
- name: Verify dotnet release
uses: pulumi/verify-provider-release@v1
with:
runtime: dotnet
directory: examples/simple/csharp
provider: random
providerVersion: ${{ inputs.providerVersion }}
- name: Verify go release
uses: pulumi/verify-provider-release@v1
if: inputs.skipGoSdk == false
Expand Down

0 comments on commit 3d6ad9b

Please sign in to comment.