File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7979 git stash
8080 git checkout development
8181 git pull
82- npm version prerelease --preid=alpha --no-git-tag-version
8382 npm install
8483 pm2 start ecosystem.config.json --env development --cwd .
8584 - name : Wait for service to be ready
Original file line number Diff line number Diff line change 7979 git stash
8080 git checkout main
8181 git pull
82- npm version minor --no-git-tag-version
83- npm version prerelease --preid=alpha
8482 npm install
8583 pm2 start ecosystem.config.json --env production --cwd .
8684 - name : Wait for service to be ready
Original file line number Diff line number Diff line change 5151 run : |
5252 npm install
5353 npm run E2Etests
54+
55+ - name : Bump version (patch + prerelease)
56+ run : |
57+ git config user.name "github-actions[bot]"
58+ git config user.email "github-actions[bot]@users.noreply.github.com"
59+ npm version patch --no-git-tag-version
60+ npm version prerelease --preid=alpha
61+ git add package.json package-lock.json || true
62+ git commit -m "ci: bump version (patch+prerelease) [skip ci]" || echo "No changes to commit"
63+ git push origin HEAD:development || echo "No changes to push"
5464
Original file line number Diff line number Diff line change 5151 run : |
5252 npm install
5353 npm run E2Etests
54+
55+ - name : Bump version (minor + prerelease)
56+ run : |
57+ git config user.name "github-actions[bot]"
58+ git config user.email "github-actions[bot]@users.noreply.github.com"
59+ npm version minor --no-git-tag-version
60+ npm version prerelease --preid=alpha
61+ git add package.json package-lock.json || true
62+ git commit -m "ci: bump version (minor+prerelease) [skip ci]" || echo "No changes to commit"
63+ git push origin HEAD:main || echo "No changes to push"
5464
You can’t perform that action at this time.
0 commit comments