From dde36f997b312067a41dfc9acc865c77ab5082e5 Mon Sep 17 00:00:00 2001 From: Samer Buna Date: Tue, 7 Jun 2022 08:41:09 -0700 Subject: [PATCH] fix: revert usd-integration temp changes --- .circleci/config.yml | 12 ++++++------ .github/workflows/check-code.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5e17ea67d8..53c661663c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -143,7 +143,7 @@ jobs: paths: - node_modules - ios/Pods - - run: git checkout usd-integration + - run: git checkout main - run: yarn jest - run: sed -i'' -e "s/GOOGLE_SERVICE_FIREBASE_API_KEY/$GOOGLE_SERVICE_FIREBASE_API_KEY/" ios/GoogleService-Info.plist - run: sed -i'' -e "s/MARKETING_VERSION.*/MARKETING_VERSION = $CIRCLE_TAG;/g" ios/GaloyApp.xcodeproj/project.pbxproj @@ -155,10 +155,10 @@ jobs: - run: git config --global user.name "circleci-bot" - run: git config --global user.email "bot@circleci.com" - run: git config pull.rebase false - - run: git pull https://${GITHUB_TOKEN}@github.com/GaloyMoney/galoy-mobile.git usd-integration + - run: git pull https://${GITHUB_TOKEN}@github.com/GaloyMoney/galoy-mobile.git main - run: git commit -a -m "new ios build [ci skip]" - run: git reset -- GoogleService-Info.plist - - run: git push -q https://${GITHUB_TOKEN}@github.com/GaloyMoney/galoy-mobile.git usd-integration + - run: git push -q https://${GITHUB_TOKEN}@github.com/GaloyMoney/galoy-mobile.git main - run: gh release upload $CIRCLE_TAG "output/gym/Bitcoin Beach.ipa" --clobber - store_artifacts: path: ios/output @@ -213,7 +213,7 @@ jobs: paths: - node_modules - - run: git checkout usd-integration + - run: git checkout main - run: yarn jest - run: echo $JAVA_OPTS - run: echo $GRADLE_OPTS @@ -223,11 +223,11 @@ jobs: - run: git config --global user.name "circleci-bot" - run: git config --global user.email "bot@circleci.com" - run: git config pull.rebase false - - run: git pull origin usd-integration + - run: git pull origin main - run: cd ~/galoy-mobile - run: git add --force android/app/build/generated/sourcemaps/react/release - run: git commit -a -m "new android build [ci skip]" - - run: git push -q https://${GITHUB_TOKEN}@github.com/GaloyMoney/galoy-mobile.git usd-integration + - run: git push -q https://${GITHUB_TOKEN}@github.com/GaloyMoney/galoy-mobile.git main - run: gh release upload $CIRCLE_TAG "app/build/outputs/apk/release/app-release.apk" --clobber - store_artifacts: diff --git a/.github/workflows/check-code.yml b/.github/workflows/check-code.yml index 166f488664..d9c6520ec1 100644 --- a/.github/workflows/check-code.yml +++ b/.github/workflows/check-code.yml @@ -1,7 +1,7 @@ name: "Check code" on: pull_request: - branches: [main, usd-integration] + branches: [main] jobs: check-code: name: Check Code diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 11526387a5..7b36e43ed9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,7 @@ name: "Test" on: pull_request: - branches: [main, usd-integration] + branches: [main] jobs: check-code: name: Tests