Skip to content

Commit

Permalink
Merge pull request #60 from cohen72/develop
Browse files Browse the repository at this point in the history
merge develop into master
  • Loading branch information
cohen72 authored Dec 22, 2020
2 parents e15b2cf + f03a032 commit 0dda466
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ on:
push:
branches:
- master
- beta
- next
- develop

jobs:
release:
name: Release
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -32,9 +31,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: If on master, merge back to beta
- name: If on master, merge back semantic release commits back to develop
if: github.ref == 'refs/heads/master'
run: |
git checkout beta
git checkout develop
git merge --ff-only master
git push --force --set-upstream origin beta
git push --force --set-upstream origin develop
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
2
3
4
5
6
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
missingDimensionStrategy "RNN.reactNativeVersion", "reactNative60" // See note below!
versionCode 134
versionName "1.0.6"
versionCode 136
versionName "1.0.7-qa.1"
multiDexEnabled true
resValue "string", "build_config_package", "com.colu.newcities"
}
Expand Down
4 changes: 2 additions & 2 deletions ios/ColuConsumerRn/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.6</string>
<string>1.0.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -40,7 +40,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>134</string>
<string>136</string>
<key>FacebookAppID</key>
<string>800294393431311</string>
<key>FacebookDisplayName</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "git-playground",
"version": "1.0.6",
"version": "1.0.7-qa.1",
"private": true,
"scripts": {
"postversion": "react-native-version --never-amend"
Expand Down

0 comments on commit 0dda466

Please sign in to comment.