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