Skip to content

Commit

Permalink
Update GitHub Actions workflows. (#603)
Browse files Browse the repository at this point in the history
This PR was automatically generated by the
update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt
repo, from commit 4a65e6eff3992cd55e1328a125702b1e7d18eb13.
  • Loading branch information
pulumi-bot authored Aug 6, 2024
1 parent 41192bc commit 2198217
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ jobs:
shell: bash
run: |
# Get latest stable release. Return only first column from result (tag).
LAST_VERSION=$(gh release view --repo pulumi/pulumi-fastly --json tagName -q .tagName)
LAST_VERSION=$(gh release view --repo pulumi/pulumi-fastly --json tagName -q .tagName || echo "No stable release" )
{
echo 'summary<<EOF'
schema-tools compare --provider="fastly" --old-commit="$LAST_VERSION" --new-commit="--local-path=provider/cmd/pulumi-resource-fastly/schema.json"
if [[ "$LAST_VERSION" != "No stable release" ]]; then
schema-tools compare --provider="fastly" --old-commit="$LAST_VERSION" --new-commit="--local-path=provider/cmd/pulumi-resource-fastly/schema.json"
fi
echo 'EOF'
} >> "$GITHUB_OUTPUT"
- name: Upload Provider Binaries
Expand Down

0 comments on commit 2198217

Please sign in to comment.