diff --git a/.github/workflows/build_sdk.yml b/.github/workflows/build_sdk.yml index 05b66deb..cd6547c6 100644 --- a/.github/workflows/build_sdk.yml +++ b/.github/workflows/build_sdk.yml @@ -68,7 +68,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 cf631aed..a351afe3 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -111,6 +111,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 da5cb446..39500053 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -85,7 +85,7 @@ jobs: { echo 'summary<> "$GITHUB_OUTPUT" diff --git a/Makefile b/Makefile index d0f65507..9e057b20 100644 --- a/Makefile +++ b/Makefile @@ -243,3 +243,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)