Install semver
This commit is contained in:
parent
07e7d83a52
commit
699774536a
|
@ -25,7 +25,6 @@ jobs:
|
|||
run: |
|
||||
echo "Ref is not develop, you must run this job from develop."
|
||||
exit 1
|
||||
- run: npm i semver
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
|
@ -34,6 +33,7 @@ jobs:
|
|||
- name: Tag prerelease
|
||||
run: |
|
||||
# setup the username and email.
|
||||
npm i semver
|
||||
git config --global user.name "Budibase Staging Release Bot"
|
||||
git config --global user.email "<>"
|
||||
./scripts/versionCommit.sh prerelease
|
||||
|
|
|
@ -35,7 +35,6 @@ jobs:
|
|||
run: |
|
||||
echo "Ref is not master, you must run this job from master."
|
||||
exit 1
|
||||
- run: npm i semver
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
|
@ -43,6 +42,7 @@ jobs:
|
|||
|
||||
- name: Tag prerelease
|
||||
run: |
|
||||
npm i semver
|
||||
# setup the username and email.
|
||||
git config --global user.name "Budibase Staging Release Bot"
|
||||
git config --global user.email "<>"
|
||||
|
|
Loading…
Reference in New Issue