-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GitHub Actions workflows. (#60)
This PR was automatically generated by the update-native-provider-workflows workflow in the pulumi/ci-mgmt repo, from commit 2c4960e091c66f59df2902620e003f2db1a7b063.
- Loading branch information
1 parent
488eecc
commit b10886c
Showing
5 changed files
with
131 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Set Provider Version | ||
- id: version | ||
name: Set Provider Version | ||
uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: PROVIDER_VERSION | ||
|
@@ -103,6 +104,13 @@ jobs: | |
run: make provider | ||
- name: Check worktree clean | ||
uses: pulumi/git-status-check-action@v1 | ||
with: | ||
allowed-changes: |- | ||
sdk/**/pulumi-plugin.json | ||
sdk/dotnet/Pulumi.*.csproj | ||
sdk/go/*/internal/pulumiUtilities.go | ||
sdk/nodejs/package.json | ||
sdk/python/pyproject.toml | ||
- run: git status --porcelain | ||
- name: Tar provider binaries | ||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ | ||
|
@@ -144,7 +152,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Set Provider Version | ||
- id: version | ||
name: Set Provider Version | ||
uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: PROVIDER_VERSION | ||
|
@@ -201,6 +210,13 @@ jobs: | |
run: make build_${{ matrix.language }} | ||
- name: Check worktree clean | ||
uses: pulumi/git-status-check-action@v1 | ||
with: | ||
allowed-changes: |- | ||
sdk/**/pulumi-plugin.json | ||
sdk/dotnet/Pulumi.*.csproj | ||
sdk/go/*/internal/pulumiUtilities.go | ||
sdk/nodejs/package.json | ||
sdk/python/pyproject.toml | ||
- run: git status --porcelain | ||
- name: Tar SDK folder | ||
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} . | ||
|
@@ -238,7 +254,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Set Provider Version | ||
- id: version | ||
name: Set Provider Version | ||
uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: PROVIDER_VERSION | ||
|
@@ -334,7 +351,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Set Provider Version | ||
- id: version | ||
name: Set Provider Version | ||
uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: PROVIDER_VERSION | ||
|
@@ -370,11 +388,10 @@ jobs: | |
role-session-name: ${{ env.PROVIDER }}@githubActions | ||
role-external-id: upload-pulumi-release | ||
role-to-assume: ${{ secrets.AWS_UPLOAD_ROLE_ARN }} | ||
- name: Set PreRelease Version | ||
run: echo "GORELEASER_CURRENT_TAG=v$(pulumictl get version --language generic)" | ||
>> $GITHUB_ENV | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v5 | ||
env: | ||
GORELEASER_CURRENT_TAG: v${{ steps.version.outputs.version }} | ||
with: | ||
args: -p 3 release --clean --timeout 60m0s | ||
version: latest | ||
|
@@ -394,7 +411,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Set Provider Version | ||
- id: version | ||
name: Set Provider Version | ||
uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: PROVIDER_VERSION | ||
|
@@ -478,7 +496,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Set Provider Version | ||
- id: version | ||
name: Set Provider Version | ||
uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: PROVIDER_VERSION | ||
|
@@ -522,26 +541,41 @@ jobs: | |
arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
build-root-directory: ./sdk/java | ||
gradle-version: 7.4.1 | ||
tag_sdk: | ||
pubish_go_sdk: | ||
runs-on: ubuntu-latest | ||
needs: publish_sdk | ||
name: publish-go-sdk | ||
needs: publish-sdk | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Set Provider Version | ||
- id: version | ||
name: Set Provider Version | ||
uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: PROVIDER_VERSION | ||
- name: Install pulumictl | ||
uses: jaxxstorm/[email protected] | ||
- name: Download go SDK | ||
uses: actions/download-artifact@v4 | ||
with: | ||
repo: pulumi/pulumictl | ||
- name: Add SDK version tag | ||
run: git tag sdk/v$(pulumictl get version --language generic) && git push origin | ||
sdk/v$(pulumictl get version --language generic) | ||
name: tag_sdk | ||
name: go-sdk.tar.gz | ||
path: ${{ github.workspace}}/sdk/ | ||
- name: Uncompress go SDK | ||
run: tar -zxf ${{github.workspace}}/sdk/go.tar.gz -C | ||
${{github.workspace}}/sdk/go | ||
- name: Publish Go SDK | ||
uses: pulumi/publish-go-sdk-action@v1 | ||
with: | ||
repository: ${{ github.repository }} | ||
base-ref: ${{ github.sha }} | ||
source: sdk | ||
path: sdk | ||
version: ${{ steps.version.outputs.version }} | ||
additive: false | ||
files: |- | ||
go.* | ||
go/** | ||
!*.tar.gz | ||
dispatch_docs_build: | ||
runs-on: ubuntu-latest | ||
needs: tag_sdk | ||
|
Oops, something went wrong.