build.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. name: CI
  2. on:
  3. push:
  4. branches: [ master ]
  5. jobs:
  6. build:
  7. strategy:
  8. matrix:
  9. os: [ubuntu-latest]
  10. runs-on: ${{matrix.os}}
  11. steps:
  12. - uses: actions/checkout@v2
  13. - name: Set Release Version
  14. id: get_version
  15. shell: bash
  16. run: |
  17. echo "::set-output name=hash::$(git rev-parse --short HEAD)"
  18. echo "::set-output name=date::$(date +%Y%m%d)"
  19. - name: Setup Java JDK
  20. uses: actions/setup-java@v2
  21. with:
  22. distribution: 'adopt'
  23. java-version: "16"
  24. - name: Flutter action
  25. uses: subosito/flutter-action@v1.5.3
  26. with:
  27. channel: "stable"
  28. flutter-version: "3.13.5"
  29. - name: Cache Dependencies
  30. id: cache
  31. uses: actions/cache@v2
  32. with:
  33. path: |
  34. ~/.gradle/caches
  35. ~/.gradle/wrapper
  36. Pods
  37. ~/local/rubies
  38. key: |
  39. ${{runner.OS}}-gradle-caches-${{ hashFiles('pubspec.lock') }}
  40. ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
  41. restore-keys: |
  42. ${{ runner.os }}-pods-
  43. ${{ runner.os }}-gradle-
  44. - name: Install Dependencies
  45. if: steps.cache.outputs.cache-hit != 'true'
  46. run: flutter pub get
  47. - name: Build apk
  48. if: ${{ runner.os == 'Linux' }}
  49. run: flutter build apk --debug --split-per-abi
  50. - name: Update to ali oss
  51. uses: yizhoumo/setup-ossutil@v1
  52. with:
  53. endpoint: oss-cn-qingdao.aliyuncs.com
  54. access-key-id: ${{ secrets.OSS_KEY_ID }}
  55. access-key-secret: ${{ secrets.OSS_KEY_SECRET }}
  56. - name: cp files to aliyun
  57. run: |
  58. ossutil cp -rf build/app/outputs/flutter-apk/**/*.apk oss://yoqi-software/develop/flutter_cocktail/${{ steps.get_version.outputs.date }}-${{ steps.get_version.outputs.hash }}/