mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00
* remove "&&"
This commit is contained in:
parent
a5f2c30782
commit
ada2845d2f
1 changed files with 5 additions and 5 deletions
|
@ -124,7 +124,7 @@ function update_dependencies_version() {
|
||||||
}
|
}
|
||||||
|
|
||||||
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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,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}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue