We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b8e0c1 commit a9f0cc8Copy full SHA for a9f0cc8
.github/workflows/release-staging.yml
@@ -134,7 +134,9 @@ jobs:
134
https://api.github.com/repos/firebase/firebase-js-sdk/dispatches
135
- name: Check for changes requiring a reference doc publish
136
id: docs-check
137
- run: git diff --exit-code origin/master HEAD docs-devsite
+ run: |
138
+ LAST_PUBLISHED_VERSION=$(npm info firebase version)
139
+ git diff --exit-code firebase@$LAST_PUBLISHED_VERSION HEAD docs-devsite
140
- name: No diff, docs not needed
141
if: ${{ success() }}
142
run: echo "DOCS_NEEDED=false" >> $GITHUB_STATE
0 commit comments