File tree 2 files changed +21
-2
lines changed
2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 58
58
- if : github.ref_type == 'tag'
59
59
run : ' [[ "$(jq -r .version deno.json)" = "$GITHUB_REF_NAME" ]]'
60
60
- run : deno publish --allow-dirty
61
+ - if : github.ref_type == 'tag'
62
+ id : extract-changelog
63
+ uses : dahlia/submark@0.3.1
64
+ with :
65
+ input-file : CHANGES.md
66
+ heading-level : 2
67
+ heading-title-text : version ${{ github.ref_name }}
68
+ ignore-case : true
69
+ omit-heading : true
70
+ - if : github.ref_type == 'tag'
71
+ run : ' cat "$CHANGES_FILE"'
72
+ env :
73
+ CHANGES_FILE : ${{ steps.extract-changelog.outputs.output-file }}
74
+ - if : github.ref_type == 'tag'
75
+ uses : softprops/action-gh-release@v2
76
+ with :
77
+ body_path : ${{ steps.extract-changelog.outputs.output-file }}
78
+ name : BotKit ${{ github.ref_name }}
79
+ generate_release_notes : false
61
80
62
81
publish-docs :
63
82
if : github.event_name == 'push'
87
106
- id : deploy
88
107
uses : actions/deploy-pages@v4
89
108
90
- # cSpell: ignore denoland
109
+ # cSpell: ignore denoland softprops
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ BotKit changelog
4
4
Version 0.1.0
5
5
-------------
6
6
7
- Initial release. To be released .
7
+ Initial release. Released on February 7, 2025 .
You can’t perform that action at this time.
0 commit comments