Skip to content

Commit 5364e15

Browse files
committed
CHANGE CI action fixes
1 parent b5f6007 commit 5364e15

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/_prepare-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
prepareRelease:
88
runs-on: macos-latest # use [ self-hosted, macOS ] to host on our own mac mini, which is twice as fast and cheaper than hosting on a github runner. See README for more info.
99
steps:
10+
- uses: actions/checkout@v3
11+
1012
- name: Update Version Code # we increase the version code with each build
1113
uses: chkfung/android-version-actions@v1.1
1214
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16-
- uses: ./.github/workflows/_prepare-release.yml@main
16+
- uses: ./.github/workflows/_prepare-release.yml
1717

1818
- name: Build Prod Release APK
1919
env:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16-
- uses: ./.github/workflows/_prepare-release.yml@main
16+
- uses: ./.github/workflows/_prepare-release.yml
1717

1818
- name: Build Prod Release APK
1919
env:

0 commit comments

Comments
 (0)