Skip to content

Commit eae9da0

Browse files
authored
Merge pull request #60 from stslex/dev
fix ci cache
2 parents d2df92a + 3b1b410 commit eae9da0

6 files changed

Lines changed: 25 additions & 12 deletions

File tree

.github/workflows/android_deploy_beta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ruby-version: '3.3'
2525

2626
- name: Cache Ruby - Bundler
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: vendor/bundle
3030
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
@@ -39,13 +39,13 @@ jobs:
3939
cache: gradle
4040

4141
- name: Cache Gradle
42-
uses: actions/cache@v1
42+
uses: actions/cache@v4
4343
with:
4444
path: ~/.gradle/caches/
4545
key: cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }}
4646

4747
- name: Cache Gradle Wrapper
48-
uses: actions/cache@v1
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/.gradle/wrapper/
5151
key: cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }}

.github/workflows/android_deploy_prod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ruby-version: '3.3'
2525

2626
- name: Cache Ruby - Bundler
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: vendor/bundle
3030
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
@@ -39,13 +39,13 @@ jobs:
3939
cache: gradle
4040

4141
- name: Cache Gradle
42-
uses: actions/cache@v1
42+
uses: actions/cache@v4
4343
with:
4444
path: ~/.gradle/caches/
4545
key: cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }}
4646

4747
- name: Cache Gradle Wrapper
48-
uses: actions/cache@v1
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/.gradle/wrapper/
5151
key: cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }}

.github/workflows/testReportJob.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: gradle/wrapper-validation-action@v1
3232

3333
- name: Cache Gradle
34-
uses: actions/cache@v3.0.2
34+
uses: actions/cache@v4
3535
with:
3636
path: |
3737
~/.gradle/caches

fastlane/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,21 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
2323

2424
Runs all the tests
2525

26+
### android crashlytics
27+
28+
```sh
29+
[bundle exec] fastlane android crashlytics
30+
```
31+
32+
Submit a new Beta Build to Crashlytics Beta
33+
2634
### android beta
2735

2836
```sh
2937
[bundle exec] fastlane android beta
3038
```
3139

32-
Submit a new Beta Build to Crashlytics Beta
40+
Deploy a beta version to the Google Play
3341

3442
### android deploy
3543

fastlane/report.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@
55

66

77

8-
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000189">
8+
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000365276">
99

1010
</testcase>
1111

1212

13-
<testcase classname="fastlane.lanes" name="1: test" time="5.171044">
13+
<testcase classname="fastlane.lanes" name="1: clean bundle" time="341.118560997">
14+
15+
</testcase>
16+
17+
18+
<testcase classname="fastlane.lanes" name="2: upload_to_play_store" time="39.182463652">
1419

1520
</testcase>
1621

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ androidTools = "31.12.2"
77
minSdk = "28"
88
targetSdk = "36"
99
compileSdk = "36"
10-
versionName = "1.18"
11-
versionCode = "18"
10+
versionName = "1.19"
11+
versionCode = "19"
1212

1313
ktx = "1.17.0"
1414
material = "1.12.0"

0 commit comments

Comments
 (0)