Skip to content

Commit ce836c6

Browse files
committed
ci: fix staging of package-lock.json by mistake
We don't commit the `package-lock.json` file and its also defined in .gitignore. So the auto update workflow fails because of this. We should only stage `package.json`.
1 parent 4246238 commit ce836c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish-extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
set -e # Exit on any error
146146
147147
# Stage and commit changes
148-
git add package.json package-lock.json || {
148+
git add package.json || {
149149
echo "❌ Failed to stage files"
150150
exit 1
151151
}

0 commit comments

Comments
 (0)