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:
parent
a4c60cd030
commit
a7b3fb6713
1 changed files with 6 additions and 5 deletions
|
@ -119,12 +119,13 @@ function update_package_version() {
|
|||
}
|
||||
|
||||
function update_dependencies_version() {
|
||||
npm ci
|
||||
npm run check-updates -- -u
|
||||
}
|
||||
|
||||
function regenerate_package_lock() {
|
||||
rm -rf package-lock.json node_modules &&
|
||||
npm install
|
||||
rm -rf package-lock.json node_modules
|
||||
npm install
|
||||
}
|
||||
|
||||
function build_package() {
|
||||
|
@ -135,9 +136,9 @@ function build_package() {
|
|||
function commit_changes() {
|
||||
local VERSION=$1
|
||||
|
||||
npm ci --only=production &&
|
||||
git add CHANGELOG.md package.json package-lock.json node_modules lib &&
|
||||
git commit -m "version ${VERSION}"
|
||||
npm ci --only=production
|
||||
git add CHANGELOG.md package.json package-lock.json node_modules lib
|
||||
git commit -m "version ${VERSION}"
|
||||
}
|
||||
|
||||
function finish() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue