-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(workflow): update GitHub workflow for prerelease handling and rele…
…ase logs - Removed configuration for prerelease APKs - Removed fatJar task - Added automatic generation of release logs - Fixed updating pre-release tag to bump the prerelease section to be the first one users see on the release page These changes streamline the release process and ensure that prerelease information is prominently displayed for users.
- Loading branch information
Showing
5 changed files
with
37 additions
and
72 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Define the path to the file | ||
FILE="./app/build.gradle.kts" | ||
|
||
# Extract the version numbers from the file | ||
versionMajor=$(grep 'val versionMajor' "$FILE" | awk '{print $4}') | ||
versionMinor=$(grep 'val versionMinor' "$FILE" | awk '{print $4}') | ||
versionPatch=$(grep 'val versionPatch' "$FILE" | awk '{print $4}') | ||
|
||
# Output the version in the desired format | ||
echo "$versionMajor.$versionMinor.$versionPatch" |
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
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
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
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