|
@@ -18,6 +18,7 @@ jobs:
|
|
|
shell: bash
|
|
|
run: |
|
|
|
echo "::set-output name=hash::$(git rev-parse --short HEAD)"
|
|
|
+ echo "::set-output name=url::$(git config --get remote.origin.url)"
|
|
|
echo "::set-output name=date::$(date +%Y%m%d)"
|
|
|
|
|
|
- name: Setup Java JDK
|
|
@@ -56,7 +57,6 @@ jobs:
|
|
|
if: ${{ runner.os == 'Linux' }}
|
|
|
run: flutter build apk --debug --split-per-abi
|
|
|
|
|
|
-
|
|
|
- name: Update to ali oss
|
|
|
uses: yizhoumo/setup-ossutil@v1
|
|
|
with:
|
|
@@ -67,3 +67,13 @@ jobs:
|
|
|
- name: cp files to aliyun
|
|
|
run: |
|
|
|
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 }}/
|
|
|
+
|
|
|
+ - uses: leafney/dingtalk-action@v1
|
|
|
+ if: always()
|
|
|
+ env:
|
|
|
+ DINGTALK_ACCESS_TOKEN: ${{ secrets.DINGTALK_ACCESS_TOKEN }}
|
|
|
+ with:
|
|
|
+ msgtype: link
|
|
|
+ title: 'build success'
|
|
|
+ text: 'flutter_cocktail has been build success, please download from aliyun oss'
|
|
|
+ msg_url: '${{ steps.get_version.outputs.url }}'
|