Skip to content

Commit

Permalink
Merge pull request #44 from remotv/fix-releases
Browse files Browse the repository at this point in the history
Fix releases
  • Loading branch information
SkyeOfBreeze authored Oct 16, 2019
2 parents 648cd1e + 4993133 commit 26e22dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Rename APK
run: mv ./app/build/outputs/apk/release/app-release.apk ./remo-controller-for-android-${{ steps.get_version.outputs.VERSION }}.apk
run: |
mv ./app/build/outputs/apk/release/app-release.apk ./remo-controller-for-android-${{ steps.get_version.outputs.VERSION }}.apk
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
}
buildTypes {
release {
if(System.getenv("KEY_ALIAS")){
if(System.getenv("KEY_ALIAS_RELEASE")){
signingConfig signingConfigs.release
}

Expand Down

0 comments on commit 26e22dc

Please sign in to comment.