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
version: 2 | |
jobs: | |
build: | |
branches: | |
only: | |
- /release_.*/ | |
working_directory: ~/code | |
docker: | |
- image: circleci/android:api-25 | |
environment: |
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
version: 2 | |
jobs: | |
build: | |
branches: | |
only: | |
- /release_.*/ | |
working_directory: ~/code | |
docker: | |
- image: circleci/android:api-25 | |
environment: |
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
steps: | |
- run: | |
name: Wait 900 Seconds (15 minutes) for other commits (cherry-picking) | |
command: sleep 900 | |
- checkout | |
- restore_cache: | |
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} | |
# - run: | |
# name: Chmod permissions #if permission for Gradlew Dependencies fail, use this. | |
# command: sudo chmod +x ./gradlew |
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
- run: | |
name: Bump Version & Push To Repo | |
command: | | |
cd scripts | |
./version-bumper.sh | |
printf "\n" | |
echo "-- Pushing To Github --" | |
printf "\n" | |
git config credential.helper 'cache --timeout=120' | |
git config user.email ${GITHUB_EMAIL} |
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
- run: | |
name: Get JSON & GPG Keys From Env-Var | |
command: | | |
echo ${PLAYSTORE_SERVICE_KEY} > app/GPLAY_KEY.json | |
echo -e $GPG_KEY > gpg_key.asc | |
- run: | |
name: Import gpg key into gpg, decrypt secrets | |
command: | | |
gpg --import gpg_key.asc | |
gpg --decrypt secrets.tar.gpg > secrets.tar |
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
- run: | |
name: Approve SDK Licenses | |
# Captures SIGPIPE 141 error but still allow repeating "y" to accept all licenses | |
command: yes | sdkmanager --licenses || if [ $? -ne '141' ]; then exit $?; fi; | |
- run: | |
name: Download Dependencies | |
command: ./gradlew androidDependencies | |
- save_cache: | |
paths: | |
- ~/.gradle |
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
- run: | |
name: Assemble Bundles & Run Tests | |
command: ./gradlew clean bundleFreeRelease bundlePlusFlavorRelease | |
- run: | |
name: Publish Free Beta Version To Play Store | |
command: ./gradlew publishFreeReleaseBundle | |
- run: | |
name: Publish Plus Beta Version To Play Store | |
command: ./gradlew publishPlusFlavorReleaseBundle |
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
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ | |
path: app/build/reports | |
destination: reports | |
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ | |
path: app/build/test-results | |
# See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples |
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
[ | |
{ | |
"id": "dfd248d3.68e5c8", | |
"type": "tab", | |
"label": "ForgetMeNot", | |
"disabled": false, | |
"info": "" | |
}, | |
{ | |
"id": "6e222d22.55f4f4", |
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
<html> | |
<head> | |
<title> | |
Countries We Ship Button | |
</title> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="header"> | |
<h1>Countries We Ship To Button</h1> |
OlderNewer