This commit is contained in:
@@ -7,18 +7,11 @@ jobs:
|
|||||||
- name: Checkout the code
|
- name: Checkout the code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: set up JDK
|
|
||||||
uses: actions/setup-java@v3
|
|
||||||
with:
|
|
||||||
java-version: '17'
|
|
||||||
distribution: 'temurin'
|
|
||||||
cache: gradle
|
|
||||||
|
|
||||||
- name: Prepare signing
|
- name: Prepare signing
|
||||||
run: |
|
run: |
|
||||||
touch keystore.properties
|
touch keystore.properties
|
||||||
echo "storePassword=$STOREPASSWORD" >> keystore.properties
|
echo "storePassword=${{ secrets.STOREPASSWORD }}" >> keystore.properties
|
||||||
echo "keyPassword=$KEYPASSWORD" >> keystore.properties
|
echo "keyPassword=${{ secrets.KEYPASSWORD }}" >> keystore.properties
|
||||||
echo "keyAlias=key0" >> keystore.properties
|
echo "keyAlias=key0" >> keystore.properties
|
||||||
echo "storeFile=../AndroidKey" >> keystore.properties
|
echo "storeFile=../AndroidKey" >> keystore.properties
|
||||||
|
|
||||||
@@ -28,5 +21,11 @@ jobs:
|
|||||||
let timestamp=$(date +%s)/10
|
let timestamp=$(date +%s)/10
|
||||||
echo "versionCode=$timestamp" >> version.properties
|
echo "versionCode=$timestamp" >> version.properties
|
||||||
|
|
||||||
- name: Build the app
|
- name: Test the app
|
||||||
run: ./gradlew build
|
run: ./gradlew test
|
||||||
|
|
||||||
|
- name: Build apk
|
||||||
|
run: ./gradlew assembleRelease
|
||||||
|
|
||||||
|
- name: Build abb
|
||||||
|
run: ./gradlew bundleRelease
|
||||||
Reference in New Issue
Block a user