Skip to content

Commit f39f7d9

Browse files
[CD] Attempt at fixing post release version incrementer
1 parent 0468144 commit f39f7d9

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publishRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ jobs:
4444
needs: bintray
4545
steps:
4646
- uses: actions/checkout@v2
47-
- run: git checkout master
47+
with:
48+
ref: master
4849

4950
- run: ./doincrementversion
5051

@@ -66,7 +67,6 @@ jobs:
6667
runs-on: ubuntu-18.04
6768
steps:
6869
- uses: actions/checkout@v2
69-
- run: git checkout master
7070

7171
- uses: actions/setup-java@v1
7272
with:

lib/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = '1.1.1'
1+
version = '1.1.2'
22
group = 'com.viliussutkus89'
33

44
apply plugin: 'com.android.library'
@@ -12,7 +12,7 @@ android {
1212
minSdkVersion 16
1313
targetSdkVersion 29
1414

15-
versionCode 7
15+
versionCode 8
1616
versionName project.version
1717

1818
archivesBaseName = rootProject.name

0 commit comments

Comments
 (0)