From f29a2308360d1b2e4d6201321edaa2d702b76791 Mon Sep 17 00:00:00 2001 From: Pulumi Bot Date: Sat, 5 Oct 2024 06:09:30 +0000 Subject: [PATCH] [internal] Update GitHub Actions workflow files --- .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 4641c22..a3ad984 100644 --- a/.github/workflows/build_sdk.yml +++ b/.github/workflows/build_sdk.yml @@ -67,7 +67,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 38df938..d4c93ba 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -110,6 +110,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 92cfcd0..b8ced8f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -84,7 +84,7 @@ jobs: { echo 'summary<> "$GITHUB_OUTPUT" diff --git a/Makefile b/Makefile index 512cb0a..d7c6b0c 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)