Skip to content

Commit

Permalink
Merge pull request #4107 from ashensw/asgardeo-docs
Browse files Browse the repository at this point in the history
Improve asgardeo docs release workflow
  • Loading branch information
ashensw authored Nov 8, 2023
2 parents f5a2c39 + c5ce9d6 commit f8ba168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-asgardeo-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
set -eo pipefail
IFS='.' read -r MAJOR MINOR PATCH <<< "${{ env.CURRENT_VERSION }}"
echo "Current version: MAJOR=$MAJOR, MINOR=$MINOR, PATCH=$PATCH"
((PATCH++))
PATCH=$((PATCH+1))
NEW_VERSION="${MAJOR}.${MINOR}.${PATCH}"
echo "New version: $NEW_VERSION"
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
Expand Down

0 comments on commit f8ba168

Please sign in to comment.