-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🚀[Release v2.14.0] Merge into Develop #307
Open
kcw-grunt
wants to merge
37
commits into
develop
Choose a base branch
from
release/v2.14.0
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
ad6ac60
🚀[Release v2.11.1 071024] Merge into Main (#246)
kcw-grunt dcb363e
🚀[Release v2.12.2 20241118] Merge into Main (#273)
kcw-grunt 893649d
🚀[Release v2.12.4 20241130] Merge into Main (#285)
kcw-grunt e7c9ad4
🚀[Release v2.13.0] Merge into Main (#301)
kcw-grunt fb7e1e5
code and version bump
kcw-grunt 5113776
Moved Arabic location in List
kcw-grunt 28ab598
renamed config workflow
kcw-grunt 18183ae
Update config.yml
kcw-grunt 8af6e24
resolved conflicts
kcw-grunt 0034f00
resolved conflict
kcw-grunt b457c2f
removed example test
kcw-grunt 6a7e8a5
code bump
kcw-grunt 8f40256
Test
kcw-grunt 6b17e92
removed tabs
kcw-grunt 79e12d8
remvoed more tabs
kcw-grunt 5d7e9e6
found the tab
kcw-grunt 7a213ca
comment out test
kcw-grunt 12bea30
fix config?
kcw-grunt 4e7eefb
remvoed tab
kcw-grunt 63a08e1
found tab
kcw-grunt b2eb9d6
added indent
kcw-grunt 7c1101b
wipe configs
kcw-grunt 1031350
Test
kcw-grunt efc8fd6
removed tabs
kcw-grunt bd0ef60
remvoed more tabs
kcw-grunt cb93f22
found the tab
kcw-grunt 7160a63
comment out test
kcw-grunt 6e2753a
fix config?
kcw-grunt 6119928
remvoed tab
kcw-grunt 744e247
found tab
kcw-grunt fffd5f2
added indent
kcw-grunt 225799b
wipe configs
kcw-grunt ed1e34e
code bump
kcw-grunt d8bacf2
Restored config
kcw-grunt 34c51e8
Merge branch 'release/v2.14.0' of https://github.com/litecoin-foundat…
kcw-grunt 8ca741b
fixed config
kcw-grunt daf9a23
removed lwdata
kcw-grunt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,27 @@ | ||
#!/usr/bin/env bash | ||
|
||
function copyEnvironmentVariablesToGradleProperties { | ||
DIR="$(pwd)" | ||
GRADLE_PROPERTIES=${DIR}"/gradle.properties" | ||
export GRADLE_PROPERTIES | ||
echo "Gradle Properties should exist at $GRADLE_PROPERTIES" | ||
|
||
if [[ ! -f "$GRADLE_PROPERTIES" ]]; then | ||
echo "Gradle Properties does not exist" | ||
|
||
echo "Creating Gradle Properties file..." | ||
touch $GRADLE_PROPERTIES | ||
|
||
echo "Writing keys to gradle.properties..." | ||
echo "RELEASE_KEYSTORE_FILE=$RELEASE_KEYSTORE_FILE" >> ${GRADLE_PROPERTIES} | ||
echo "RELEASE_KEYSTORE_PASSWORD=$RELEASE_KEYSTORE_PASSWORD" >> ${GRADLE_PROPERTIES} | ||
echo "RELEASE_KEY_ALIAS=$RELEASE_KEY_ALIAS" >> ${GRADLE_PROPERTIES} | ||
echo "RELEASE_KEY_PASSWORD=$RELEASE_KEY_PASSWORD" >> ${GRADLE_PROPERTIES} | ||
fi | ||
} | ||
|
||
|
||
|
||
function fetchKeystore { | ||
sudo gpg --passphrase ${RELEASE_KEYSTORE_ENCRYPTION_KEY} --pinentry-mode loopback -o "app/$RELEASE_KEYSTORE_FILE" -d "upload-binary/$RELEASE_KEYSTORE_FILE.gpg" | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so we put the google-services.json and the release.keystore here? @kcw-grunt