Skip to content

Commit eda8b9e

Browse files
publish go sdk with pulumi/publish-go-sdk-action
1 parent 4930640 commit eda8b9e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/develop.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@ jobs:
8383
- name: Build Pulumi plugin
8484
run: PROVIDER_VERSION=${{ steps.version.outputs.PROVIDER_VERSION }} make plugin
8585

86+
- name: Publish Go SDK
87+
uses: publish-go-sdk-action@v1
88+
with:
89+
github_token: ${{ secrets.GITHUB_TOKEN }}
90+
path: sdk/go
91+
8692
- name: Publish Pulumi plugin
8793
uses: actions/upload-artifact@v4
8894
with:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ plugin-local: gen-sdk plugin
4343
pulumi plugin install resource gcp-vertex-model-deployment v$(PROVIDER_VERSION) --file ./build/$(PLUGIN_NAME)
4444
@echo "Plugin installed successfully"
4545

46-
plugin: build
46+
plugin: gen-sdk
4747
@set -eu && \
4848
mkdir -p ./build && \
4949
echo "Building $(PROVIDER_NAME) with version $(PROVIDER_VERSION): $(PLUGIN_NAME)" && \

0 commit comments

Comments
 (0)