From 6068ea69d1a8915587b27241ddf573f344762a9f Mon Sep 17 00:00:00 2001 From: Pulumi Bot <30351955+pulumi-bot@users.noreply.github.com> Date: Sat, 5 Oct 2024 07:12:31 +0100 Subject: [PATCH] Update GitHub Actions workflows. (#524) 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 c012a7f..95828f1 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 3f7043c..0d72743 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 ac76cd1..bd139e5 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 7baeea7..8439c24 100644 --- a/Makefile +++ b/Makefile @@ -244,3 +244,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)