Skip to content

Commit 68f084f

Browse files
committed
feat: update CI/CD pipeline to include deployment job and remove changelog generation
1 parent 1f0d257 commit 68f084f

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/CD.yaml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'v*.*.*'
77

88
jobs:
9-
build:
9+
deploy:
1010
runs-on: ubuntu-latest
1111
timeout-minutes: 30
1212

@@ -61,24 +61,10 @@ jobs:
6161
mkdir -p release
6262
cp app/build/outputs/apk/release/app-release.apk release/BreakingBad-${{ env.RELEASE_VERSION }}.apk
6363
64-
- name: Generate changelog
65-
id: changelog
66-
uses: metcalfc/[email protected]
67-
with:
68-
myToken: ${{ secrets.GITHUB_TOKEN }}
69-
7064
- name: Create GitHub Release
7165
uses: softprops/action-gh-release@v1
7266
with:
7367
files: release/BreakingBad-${{ env.RELEASE_VERSION }}.apk
7468
name: Release ${{ env.RELEASE_VERSION }}
75-
body: |
76-
${{ steps.changelog.outputs.changelog }}
77-
draft: false
78-
prerelease: false
7969
env:
8070
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
81-
82-
- name: Delete checksum.txt after build
83-
if: always()
84-
run: rm -f checksum.txt

0 commit comments

Comments
 (0)