Skip to content

Commit

Permalink
build: fix yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
um7a committed Sep 20, 2022
1 parent 3f58fc8 commit d2d13b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/daily_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
cp package.json package.json.old
npm install -g npm-package-updater
npm-package-updater --caret --git --commit-prefix "deps: " --debug
if [[ ! -z $(diff package.json package.json.old) ]]; then
git add package-lock.json
git commit -m "deps: Update package-lock.json"
if [[ ! -z $(diff package.json package.json.old) ]]; then \
git add package-lock.json; \
git commit -m "deps: Update package-lock.json"; \
fi
- name: Install npm packages
Expand Down

0 comments on commit d2d13b7

Please sign in to comment.