File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 8080 git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
8181 git config user.name "github-actions[bot]"
8282
83+ - name : Install latest emoji-picker-react in clone
84+ shell : bash
85+ run : |
86+ set -euo pipefail
87+ cd /tmp/ghpages
88+ npm install emoji-picker-react@${{ steps.read_version.outputs.PACKAGE_VERSION }} --no-audit --no-fund
89+
8390 - name : Install dependencies in clone
8491 shell : bash
8592 run : |
94101 run : |
95102 set -euo pipefail
96103 cd /tmp/ghpages
97- git add package.json || true
104+ # Stage both package.json and package-lock.json if present
105+ git add package.json package-lock.json || true
98106 if git diff --staged --quiet; then
99107 echo "No changes to commit"
100108 else
You can’t perform that action at this time.
0 commit comments