1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

Feature/scripts (#95)

* * install all dependencies on creating release branch

* * remove "&&"
This commit is contained in:
shimataro 2020-01-26 00:15:27 +09:00 committed by GitHub
parent a4c60cd030
commit a7b3fb6713
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,11 +119,12 @@ function update_package_version() {
} }
function update_dependencies_version() { function update_dependencies_version() {
npm ci
npm run check-updates -- -u npm run check-updates -- -u
} }
function regenerate_package_lock() { function regenerate_package_lock() {
rm -rf package-lock.json node_modules && rm -rf package-lock.json node_modules
npm install npm install
} }
@ -135,8 +136,8 @@ function build_package() {
function commit_changes() { function commit_changes() {
local VERSION=$1 local VERSION=$1
npm ci --only=production && npm ci --only=production
git add CHANGELOG.md package.json package-lock.json node_modules lib && git add CHANGELOG.md package.json package-lock.json node_modules lib
git commit -m "version ${VERSION}" git commit -m "version ${VERSION}"
} }