Skip to content

Commit b57702c

Browse files
committed
fix(build): syntax error
1 parent 0d36722 commit b57702c

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ jobs:
1717
java-version: 11
1818
- name: Build the app
1919
run: ./gradlew assembleDebug assemble
20+
- name: Sign app APK
21+
uses: r0adkll/sign-android-release@v1
22+
id: sign_app
23+
with:
24+
releaseDirectory: |
25+
app/build/outputs/apk/release
26+
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
27+
alias: ${{ secrets.SIGNING_ALIAS }}
28+
keyStorePassword: ${{ secrets.SIGNING_KEYSTORE_PW }}
29+
keyPassword: ${{ secrets.SIGNING_KEY_PW }}
2030
- name: Upload apk as asset
2131
uses: actions/upload-artifact@v2
2232
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
repo_token: "${{ secrets.GITHUB_TOKEN }}"
3737
title: ${{ github.ref_name }}
3838
automatic_release_name: ${{ github.ref_name }}
39-
draft: ${{ !contains(github.ref, 'tags' }}
39+
draft: ${{ !contains(github.ref, 'tags') }}
4040
prerelease: ${{contains( github.ref_name , '-') }}
4141
files: |
4242
app/build/outputs/apk/release/*.apk

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
applicationId "ch.tiim.markdown_widget"
1111
minSdk 24
1212
targetSdk 32
13-
versionCode 5
14-
versionName "0.1.4-wip.1"
13+
versionCode 6
14+
versionName "0.1.4-wip.2"
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}

0 commit comments

Comments
 (0)