File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 2222 run : dart format .
2323
2424 - name : Generate files @Freezed
25- run : dart run build_runner build --delete-conflicting-outputs
25+ run : dart run build_runner build --delete-conflicting-outputs
Original file line number Diff line number Diff line change 1+ name : WorkFlows 2
2+ on :
3+ push :
4+ tags :
5+ - ' *'
6+
7+ jobs :
8+ release :
9+ if : startsWith(github.ref, 'refs/tags/')
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Build Changelog
13+ id : github_release
14+ uses : mikepenz/release-changelog-builder-action@v1
15+ env :
16+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
17+
18+ - name : Create Release
19+ uses : actions/create-release@v1
20+ with :
21+ tag_name : ${{ github.ref }}
22+ release_name : ${{ github.ref }}
23+ body : ${{steps.github_release.outputs.changelog}}
24+ env :
25+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments