Skip to content

Commit be87950

Browse files
authored
Update GitHub Actions workflows. (#575)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit d26db21f71bbf68eabf5c59bb5519d34d519d9cb.
1 parent 2ba8fe1 commit be87950

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/build_sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
with:
6666
allowed-changes: |
6767
sdk/**/pulumi-plugin.json
68-
sdk/dotnet/Pulumi.*.csproj
68+
sdk/dotnet/*.csproj
6969
sdk/go/**/pulumiUtilities.go
7070
sdk/nodejs/package.json
7171
sdk/python/pyproject.toml

.github/workflows/master.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ jobs:
108108
runs-on: ubuntu-latest
109109
steps:
110110
- name: check if this commit needs release
111+
if: ${{ env.RELEASE_BOT_ENDPOINT != '' }}
111112
uses: pulumi/action-release-by-pr-label@main
112113
with:
113114
command: "release-if-needed"

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
{
8383
echo 'summary<<EOF'
8484
if [[ "$LAST_VERSION" != "No stable release" ]]; then
85-
schema-tools compare --provider="postgresql" --old-commit="$LAST_VERSION" --new-commit="--local-path=provider/cmd/pulumi-resource-postgresql/schema.json"
85+
schema-tools compare --provider="postgresql" --old-commit="$LAST_VERSION" --repository="github://api.github.com/pulumi" --new-commit="--local-path=provider/cmd/pulumi-resource-postgresql/schema.json"
8686
fi
8787
echo 'EOF'
8888
} >> "$GITHUB_OUTPUT"

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,3 +243,6 @@ provider_dist-darwin-arm64: bin/$(PROVIDER)-v$(VERSION_GENERIC)-darwin-arm64.tar
243243
provider_dist-windows-amd64: bin/$(PROVIDER)-v$(VERSION_GENERIC)-windows-amd64.tar.gz
244244
provider_dist: provider_dist-linux-amd64 provider_dist-linux-arm64 provider_dist-darwin-amd64 provider_dist-darwin-arm64 provider_dist-windows-amd64
245245
.PHONY: provider_dist-linux-amd64 provider_dist-linux-arm64 provider_dist-darwin-amd64 provider_dist-darwin-arm64 provider_dist-windows-amd64 provider_dist
246+
247+
# Permit providers to extend the Makefile with provider-specific Make includes.
248+
include $(wildcard .mk/*.mk)

0 commit comments

Comments
 (0)