Skip to content

Commit

Permalink
[internal] Update GitHub Actions workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
pulumi-bot committed Aug 6, 2024
1 parent 41192bc commit f1927ef
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 f1927ef

Please sign in to comment.