build.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. name: CI
  2. on:
  3. push:
  4. branches:
  5. - master
  6. tags:
  7. - v*
  8. pull_request:
  9. jobs:
  10. check_wrapper:
  11. name: Validate Gradle Wrapper
  12. runs-on: ubuntu-latest
  13. steps:
  14. - name: Clone repo
  15. uses: actions/checkout@v2
  16. - name: Validate Gradle Wrapper
  17. uses: gradle/wrapper-validation-action@v1
  18. build:
  19. name: Build app
  20. needs: check_wrapper
  21. if: "!startsWith(github.event.head_commit.message, '[SKIP CI]')"
  22. runs-on: ubuntu-latest
  23. steps:
  24. - name: Cancel previous runs
  25. uses: styfle/[email protected]
  26. with:
  27. access_token: ${{ github.token }}
  28. - name: Clone repo
  29. uses: actions/checkout@v2
  30. - name: Set up JDK 11
  31. uses: actions/setup-java@v1
  32. with:
  33. java-version: 11
  34. - name: Copy CI gradle.properties
  35. run: |
  36. mkdir -p ~/.gradle
  37. cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
  38. - name: Build app
  39. uses: eskatos/gradle-command-action@v1
  40. with:
  41. arguments: assembleStandardRelease
  42. wrapper-cache-enabled: true
  43. dependencies-cache-enabled: true
  44. configuration-cache-enabled: true
  45. # Sign APK and create release for tags
  46. - name: Get tag name
  47. if: startsWith(github.ref, 'refs/tags/') && github.repository == 'tachiyomiorg/tachiyomi'
  48. id: get_tag_name
  49. run: |
  50. set -x
  51. echo "VERSION_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
  52. # TODO: need to support multiple APKs
  53. - name: Sign APK
  54. if: startsWith(github.ref, 'refs/tags/') && github.repository == 'tachiyomiorg/tachiyomi'
  55. uses: r0adkll/sign-android-release@v1
  56. with:
  57. releaseDirectory: app/build/outputs/apk/standard/release
  58. signingKeyBase64: ${{ secrets.SIGNING_KEY }}
  59. alias: ${{ secrets.ALIAS }}
  60. keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
  61. keyPassword: ${{ secrets.KEY_PASSWORD }}
  62. - name: Clean up build artifacts
  63. if: startsWith(github.ref, 'refs/tags/') && github.repository == 'tachiyomiorg/tachiyomi'
  64. run: |
  65. cp ${{ env.SIGNED_RELEASE_FILE }} tachiyomi-${{ env.VERSION_TAG }}.apk
  66. md5=`md5sum tachiyomi-${{ env.VERSION_TAG }}.apk | awk '{ print $1 }'`
  67. echo "APK_MD5=$md5" >> $GITHUB_ENV
  68. - name: Create Release
  69. if: startsWith(github.ref, 'refs/tags/') && github.repository == 'tachiyomiorg/tachiyomi'
  70. uses: softprops/action-gh-release@v1
  71. with:
  72. tag_name: ${{ env.VERSION_TAG }}
  73. name: Tachiyomi ${{ env.VERSION_TAG }}
  74. body: |
  75. MD5: ${{ env.APK_MD5 }}
  76. files: |
  77. tachiyomi-${{ env.VERSION_TAG }}.apk
  78. draft: true
  79. prerelease: false
  80. env:
  81. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}