Skip to content

Commit 2817ffd

Browse files
committed
Marge latest changes.
2 parents 34b7554 + 82a6d7e commit 2817ffd

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/github-actions.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ jobs:
66
build_release:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2.6.0
9+
- uses: actions/checkout@v6
1010

1111
- name: Setup JAVA 11
12-
uses: actions/setup-java@v3
12+
uses: actions/setup-java@v5
1313
with:
1414
distribution: 'corretto'
1515
java-version: 11
1616

1717
- name: Cache Gradle and wrapper
18-
uses: actions/cache@v2
18+
uses: actions/cache@v4
1919
with:
2020
path: |
2121
~/.gradle/caches
@@ -29,22 +29,22 @@ jobs:
2929

3030
run: |
3131
echo $ENCODED_STRING > keystore-b64.txt
32-
base64 -d keystore-b64.txt > $SIGNING_KEY_STORE_PATH
32+
base64 -i -d keystore-b64.txt > $SIGNING_KEY_STORE_PATH
3333
3434
- name: Decode Properties
3535
env:
3636
ENCODED_STRING: ${{ secrets.KEYSTORE_PROPERTIES_BASE64 }}
37-
SIGNING_KEY_STORE_PATH: ${{ secrets.KEYSTORE_PROPERTIES_PATH }}
37+
SIGNING_PROPERTIES_STORE_PATH: ${{ secrets.KEYSTORE_PROPERTIES_PATH }}
3838

3939
run: |
40-
echo $ENCODED_STRING > keystore-b64.txt
41-
base64 -d keystore-b64.txt > $SIGNING_KEY_STORE_PATH
40+
echo $ENCODED_STRING > properties-b64.txt
41+
base64 -i -d properties-b64.txt > $SIGNING_PROPERTIES_STORE_PATH
4242
4343
- name: Build Release apk
4444
run: ./gradlew assembleRelease
4545

4646
- name: Upload Release Build to Artifacts
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v6
4848
with:
4949
name: release-artifacts
5050
paths: |

0 commit comments

Comments
 (0)