File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 33
33
name : Generate changelog
34
34
runs-on : ubuntu-latest
35
35
needs : version
36
- outputs :
37
- changelog : ${{steps.changelog-generator.outputs.changelog}}
38
36
steps :
39
37
- uses : actions/checkout@v4
40
38
- name : Hack around https://github.com/actions/checkout/issues/290
55
53
id : changelog-generator
56
54
run : |
57
55
dart pub global run changelog_cli generate -P markdown -s ${{needs.version.outputs.prev-version}} -e ${{needs.version.outputs.version}} > CHANGELOG.md
58
- CHANGELOG="$(cat CHANGELOG.md)"
59
- echo "$CHANGELOG"
60
- echo "changelog=$CHANGELOG" >> "$GITHUB_OUTPUT"
56
+ - name : Upload changelog
57
+ uses : actions/upload-artifact@v4
58
+ with :
59
+ name : changelog
60
+ path : CHANGELOG.md
61
61
build-apk :
62
62
name : Build APK
63
63
runs-on : ubuntu-latest
@@ -154,7 +154,7 @@ jobs:
154
154
155
155
with :
156
156
tag_name : ${{ needs.version.outputs.version }}
157
- body : ${{needs.changelog .outputs.changelog}}
157
+ bodyFile : ${{steps.download .outputs.download-path}}/CHANGELOG.md
158
158
files : |
159
159
${{steps.download.outputs.download-path}}/**/*
160
160
build-web :
You can’t perform that action at this time.
0 commit comments