Skip to content

Commit

Permalink
fix alias
Browse files Browse the repository at this point in the history
  • Loading branch information
icco committed Apr 15, 2024
1 parent 8bb071e commit cd5530f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ rm -rf package-lock.json dist node_modules .next .contentlayer
yarn
yarn upgrade
git add package* yarn.lock
git diff --quiet --staged || git ci -m 'chore(deps): yarn upgrade'
git diff --quiet --staged || git commit -m 'chore(deps): yarn upgrade'

yarn run lint
git add src
git diff --quiet --staged || git ci -m 'chore: lint'
git diff --quiet --staged || git commit -m 'chore: lint'

yarn run build

git add public
git diff --quiet --staged || git ci -m 'chore: update build artifacts'
git diff --quiet --staged || git commit -m 'chore: update build artifacts'

git push -u

0 comments on commit cd5530f

Please sign in to comment.