-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Uncommenting version bump and deleting branch from
develop.yml
- Loading branch information
1 parent
8a1b5fb
commit 40ebc76
Showing
1 changed file
with
28 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,41 +3,40 @@ on: | |
push: | ||
branches: | ||
- 'develop' | ||
- 'test-develop-workflow' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
# version-bump: | ||
# name: 'Version Bump' | ||
# runs-on: ubuntu-20.04 | ||
# steps: | ||
# - name: 'Check out code' | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# token: ${{ secrets.JENKINS_GITHUB_PAT }} | ||
# # fetch-depth 0 means deep clone the repo | ||
# fetch-depth: 0 | ||
# - name: 'Update Version' | ||
# run: | | ||
# set -x | ||
# git config user.name devops | ||
# git config user.email [email protected] | ||
# git checkout -B master origin/master | ||
# old_develop="$(git merge-base origin/develop origin/master)" | ||
# new_develop="$(git rev-parse origin/develop)" | ||
# if git diff --exit-code ${old_develop} ${new_develop} -- package/version; then | ||
# git merge --no-edit origin/develop | ||
# ./package/version.sh bump | ||
# else | ||
# git merge --no-edit --strategy-option=theirs origin/develop | ||
# fi | ||
# ./package/version.sh sub | ||
# if git add --update && git commit --no-edit --allow-empty --message "Set Version: $(cat package/version)"; then | ||
# git push origin master | ||
# fi | ||
version-bump: | ||
name: 'Version Bump' | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: 'Check out code' | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.JENKINS_GITHUB_PAT }} | ||
# fetch-depth 0 means deep clone the repo | ||
fetch-depth: 0 | ||
- name: 'Update Version' | ||
run: | | ||
set -x | ||
git config user.name devops | ||
git config user.email [email protected] | ||
git checkout -B master origin/master | ||
old_develop="$(git merge-base origin/develop origin/master)" | ||
new_develop="$(git rev-parse origin/develop)" | ||
if git diff --exit-code ${old_develop} ${new_develop} -- package/version; then | ||
git merge --no-edit origin/develop | ||
./package/version.sh bump | ||
else | ||
git merge --no-edit --strategy-option=theirs origin/develop | ||
fi | ||
./package/version.sh sub | ||
if git add --update && git commit --no-edit --allow-empty --message "Set Version: $(cat package/version)"; then | ||
git push origin master | ||
fi | ||
post-performance-tests: | ||
name: 'Performace Tests' | ||
|