Browse Source

增加钉钉推送

liuyuqi-dellpc 1 year ago
parent
commit
3f7239b841
1 changed files with 11 additions and 1 deletions
  1. 11 1
      .github/workflows/build.yml

+ 11 - 1
.github/workflows/build.yml

@@ -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 }}'