We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e56ba3 commit 49f01e1Copy full SHA for 49f01e1
.github/workflows/docs.yml
@@ -22,7 +22,11 @@ jobs:
22
run: |
23
git fetch && git checkout main
24
diff=$(git diff ${{ github.event.before }}:lib/package.json lib/package.json)
25
- echo "diff=$diff" >> $GITHUB_OUTPUT
+ if $diff == ''; then
26
+ echo "diff=''" >> $GITHUB_ENV
27
+ else
28
+ echo "diff='not empty'" >> $GITHUB_ENV
29
+ fi
30
31
- name: Exit early if lib/package.json was modified
32
if: steps.pub.outputs.diff != ''
lib/package.json
@@ -75,7 +75,6 @@
75
"React 18",
76
"React 19",
77
"Next.js",
78
- "Next.js 13",
79
"Next.js 14",
80
"Next.js 15",
81
"React server components",
0 commit comments