Skip to content

Commit

Permalink
Change
Browse files Browse the repository at this point in the history
  • Loading branch information
gtroitsk committed Mar 7, 2024
1 parent cf09210 commit 4b87f31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/project.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Quarkus QE Test Framework
release:
current-version: 1.4.2.Beta9
current-version: 1.4.3.Beta1
next-version: 1.4.3.Beta2
6 changes: 3 additions & 3 deletions .github/workflows/check-release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
release=$(curl -sSL "https://github.com/gitapi/repos/${GITHUB_REPOSITORY}/releases/latest" | jq -r .tag_name)
release_subversion=$(echo "$release" | cut -d"." -f3,3)
release_stage_number=$(echo "$release" | cut -d"." -f4,4 | grep -o '[0-9]' || true)
echo $release_subversion
echo "release_subversion=" $release_subversion
next_version=$(grep -E 'current-version:\s*' .github/project.yml | awk '{print $2}')
next_version_subversion=$(echo "$next_version" | cut -d"." -f3,3)
next_version_stage_number=$(echo "$next_version" | cut -d"." -f4,4 | grep -o '[0-9]' || true)
echo $next_version_subversion
echo $next_version_stage_number
echo "next_version_subversion=" $next_version_subversion
echo "next_version_stage_number=" $next_version_stage_number
echo $release "->" $next_version
Expand Down

0 comments on commit 4b87f31

Please sign in to comment.