File tree 1 file changed +22
-3
lines changed 1 file changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -344,9 +344,28 @@ jobs:
344
344
345
345
with :
346
346
repo : pulumi/pulumictl
347
- - name : Add SDK version tag
348
- run : git tag "sdk/v$PROVIDER_VERSION" && git push origin
349
- " sdk/v$PROVIDER_VERSION"
347
+ - name : Download Go SDK
348
+ uses : actions/download-artifact@v4
349
+ with :
350
+ name : go-sdk.tar.gz
351
+ path : $${{ github.workspace }}/sdk/
352
+ - name : Uncompress Go SDK
353
+ run : tar -zxf ${{ github.workspace }}/sdk/go.tar.gz -C
354
+ ${{ github.workspace }}/sdk/go
355
+ shell : bash
356
+ - uses : pulumi/publish-go-sdk-action@v1
357
+ with :
358
+ repository : ${{ github.repository }}
359
+ base-ref : ${{ github.sha }}
360
+ source : sdk
361
+ path : sdk
362
+ version : ${{ needs.version.outputs.version }}
363
+ additive : false
364
+ # Avoid including other language SDKs & artifacts in the commit
365
+ files : |
366
+ go.*
367
+ go/**
368
+ !*.tar.gz
350
369
create_docs_build :
351
370
name : Create docs build
352
371
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments