|
@@ -126,6 +126,11 @@ jobs:
|
|
|
- name: Set Build Date # Output will be use in Release
|
|
- name: Set Build Date # Output will be use in Release
|
|
|
run: |
|
|
run: |
|
|
|
echo "BUILD_DATE=$(date +%Y%m%d)" >> $GITHUB_ENV
|
|
echo "BUILD_DATE=$(date +%Y%m%d)" >> $GITHUB_ENV
|
|
|
|
|
+ DEVICE_TREE_URL="${{ github.event.inputs.DEVICE_TREE }}"
|
|
|
|
|
+ if [[ "${DEVICE_TREE_URL}" == *.git ]]; then
|
|
|
|
|
+ DEVICE_TREE_URL="${DEVICE_TREE_URL%.git}"
|
|
|
|
|
+ fi
|
|
|
|
|
+ echo "DEVICE_TREE_URL=${DEVICE_TREE_URL}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Check if Recovery Exist
|
|
- name: Check if Recovery Exist
|
|
|
run: |
|
|
run: |
|
|
@@ -208,8 +213,8 @@ jobs:
|
|
|
body: |
|
|
body: |
|
|
|
Target: ${{ env.RECOVERY_TYPE }}.img
|
|
Target: ${{ env.RECOVERY_TYPE }}.img
|
|
|
Build: ${{ github.event.inputs.MANIFEST_BRANCH }}
|
|
Build: ${{ github.event.inputs.MANIFEST_BRANCH }}
|
|
|
- Device: [Device Tree/Branch](${{ github.event.inputs.DEVICE_TREE }}/tree/${{ github.event.inputs.DEVICE_TREE_BRANCH }})
|
|
|
|
|
- Commit: Most recent [commit](${{ github.event.inputs.DEVICE_TREE }}/commit/${{ env.COMMIT_ID }}) during building.
|
|
|
|
|
|
|
+ Device: [Device Tree/Branch](${{ env.DEVICE_TREE_URL }}/tree/${{ inputs.DEVICE_TREE_BRANCH }})
|
|
|
|
|
+ Commit: Most recent [commit](${{ env.DEVICE_TREE_URL }}/commit/${{ env.COMMIT_ID }}) during building.
|
|
|
MD5 (img): ${{ env.MD5_IMG }}
|
|
MD5 (img): ${{ env.MD5_IMG }}
|
|
|
|
|
|
|
|
- name: Run LDCheck
|
|
- name: Run LDCheck
|