Skip to content

Commit 0c4e835

Browse files
ci: Add github release generator
1 parent 3e5b910 commit 0c4e835

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

.github/workflows/base.yaml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ jobs:
4949
flutter build ios --debug --no-codesign
5050
flutter build web
5151
52-
- name: Upload coverage to Codecov
53-
if: ${{ matrix.channel == 'stable' }}
54-
uses: codecov/codecov-action@v3
55-
with:
56-
files: coverage/lcov.info
57-
flags: unittests
58-
name: flutter_form_builder
52+
# - name: Upload coverage to Codecov
53+
# if: ${{ matrix.channel == 'stable' }}
54+
# uses: codecov/codecov-action@v3
55+
# with:
56+
# files: coverage/lcov.info
57+
# flags: unittests
58+
# name: form_builder_image_picker
5959

6060
deployment:
6161
if: ${{ github.ref_type == 'tag' }}
@@ -79,3 +79,13 @@ jobs:
7979
sh ./tool/pub_login.sh
8080
- name: Publish package
8181
run: dart pub publish -v -f
82+
- name: Build changelog
83+
id: github_release
84+
uses: mikepenz/release-changelog-builder-action@v3
85+
env:
86+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
87+
- name: Create release
88+
uses: softprops/[email protected]
89+
with:
90+
body: ${{steps.github_release.outputs.changelog}}
91+

0 commit comments

Comments
 (0)