Skip to content

Commit

Permalink
Merge pull request #87 from leanix/release/v1.7.1
Browse files Browse the repository at this point in the history
Release 1.7.1
  • Loading branch information
alfredo-mfaria authored Jan 2, 2024
2 parents 11fc61d + fd90a98 commit 44abb7c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ jobs:
steps:
- name: Check branch name
run: |
if [[ "${{ github.ref }}" == "refs/heads/main" ]] || [[ "${{ github.ref }}" =~ ^refs/heads/feature/.*$ ]] || [[ "${{ github.ref }}" =~ ^refs/heads/bug/.*$ ]] ; then
if [[ "${{ github.ref }}" == "refs/heads/main" ]]
|| [[ "${{ github.ref }}" =~ ^refs/heads/feature/.*$ ]]
|| [[ "${{ github.ref }}" =~ ^refs/heads/release/v.*$ ]]
|| [[ "${{ github.ref }}" =~ ^refs/heads/bug/.*$ ]] ; then
echo "Branch naming is correct!"
else
echo "Invalid branch name! Correct format: 'feature/<branch-name>' or 'bug/<branch-name>'"
echo "Invalid branch name! Correct format: 'feature/<branch-name>' or 'bug/<branch-name>' or release/vx.x.x"
exit 1
fi
gradle-ci:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "net.leanix.vsm"
version = "v1.7.0"
version = "v1.7.1"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
Expand Down

0 comments on commit 44abb7c

Please sign in to comment.