Skip to content

Commit

Permalink
fix: revert usd-integration temp changes
Browse files Browse the repository at this point in the history
  • Loading branch information
samerbuna committed Jun 7, 2022
1 parent f87a451 commit dde36f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-code.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Check code"
on:
pull_request:
branches: [main, usd-integration]
branches: [main]
jobs:
check-code:
name: Check Code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Test"
on:
pull_request:
branches: [main, usd-integration]
branches: [main]
jobs:
check-code:
name: Tests
Expand Down

0 comments on commit dde36f9

Please sign in to comment.