From 9d4368c650560ab40b55cab02f1db5bb06bd252c Mon Sep 17 00:00:00 2001 From: Pulumi Bot <30351955+pulumi-bot@users.noreply.github.com> Date: Sat, 5 Oct 2024 07:20:25 +0100 Subject: [PATCH] Update GitHub Actions workflows. (#2501) This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit d26db21f71bbf68eabf5c59bb5519d34d519d9cb. --- .github/workflows/build_sdk.yml | 2 +- .github/workflows/master.yml | 1 + .github/workflows/publish.yml | 2 +- Makefile | 3 +++ 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_sdk.yml b/.github/workflows/build_sdk.yml index f592d18d77..ee9def7670 100644 --- a/.github/workflows/build_sdk.yml +++ b/.github/workflows/build_sdk.yml @@ -73,7 +73,7 @@ jobs: with: allowed-changes: | sdk/**/pulumi-plugin.json - sdk/dotnet/Pulumi.*.csproj + sdk/dotnet/*.csproj sdk/go/**/pulumiUtilities.go sdk/nodejs/package.json sdk/python/pyproject.toml diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 328182bbb1..63b1f8f6ee 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -116,6 +116,7 @@ jobs: runs-on: ubuntu-latest steps: - name: check if this commit needs release + if: ${{ env.RELEASE_BOT_ENDPOINT != '' }} uses: pulumi/action-release-by-pr-label@main with: command: "release-if-needed" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8572c0bfb7..6326b1b35a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -90,7 +90,7 @@ jobs: { echo 'summary<> "$GITHUB_OUTPUT" diff --git a/Makefile b/Makefile index 4f9868acfd..b15bb6bdeb 100644 --- a/Makefile +++ b/Makefile @@ -249,3 +249,6 @@ provider_dist-darwin-arm64: bin/$(PROVIDER)-v$(VERSION_GENERIC)-darwin-arm64.tar provider_dist-windows-amd64: bin/$(PROVIDER)-v$(VERSION_GENERIC)-windows-amd64.tar.gz provider_dist: provider_dist-linux-amd64 provider_dist-linux-arm64 provider_dist-darwin-amd64 provider_dist-darwin-arm64 provider_dist-windows-amd64 .PHONY: provider_dist-linux-amd64 provider_dist-linux-arm64 provider_dist-darwin-amd64 provider_dist-darwin-arm64 provider_dist-windows-amd64 provider_dist + +# Permit providers to extend the Makefile with provider-specific Make includes. +include $(wildcard .mk/*.mk)