Skip to content

Commit 94459f6

Browse files
committed
Fix(Build): clean unused step
1 parent ee9f2bb commit 94459f6

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

.github/workflows/deploy-prod.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,6 @@ jobs:
5050
echo "about.github=https://github.com/glpi-project/android-inventory-agent" >> ./app/src/main/assets/about.properties
5151
5252
53-
- name: "Extract Full ChangeLog (Conventional Commit)"
54-
run: |
55-
{
56-
echo 'full_change_log<<EOF'
57-
./vendor/bin/robo build:log 0.9 HEAD
58-
echo EOF
59-
} >> "$GITHUB_ENV"
60-
61-
- name: "Update Full ChangeLog"
62-
run: echo "${{ env.full_change_log }}" > CHANGELOG.md
63-
6453
- name: Update main branch
6554
uses: EndBug/add-and-commit@v9
6655
with:
@@ -141,19 +130,11 @@ jobs:
141130
- name: "Rename APK"
142131
run: mv app/build/outputs/apk/release/app-release-unsigned-signed.apk app/build/outputs/apk/release/android-inventory-agent-v${{ env.tag_name }}.apk
143132

144-
- name: "Extract Clean Git Log (Conventional Commit)"
145-
run: |
146-
{
147-
echo 'release_body<<EOF'
148-
./vendor/bin/robo build:log ${{ env.previous_tag_name }} HEAD 0
149-
echo EOF
150-
} >> "$GITHUB_ENV"
151-
152133
- name: Create Release
153134
uses: softprops/action-gh-release@v1
154135
if: startsWith(github.ref, 'refs/tags/')
155136
with:
156137
name : Android Inventory Agent v${{ env.tag_name }}
157138
draft : true
158-
body : ${{ env.release_body }}
139+
body : See CHANGELOG.md
159140
files: app/build/outputs/apk/release/android-inventory-agent-v${{ env.tag_name }}.apk

0 commit comments

Comments
 (0)