Skip to content

Commit 5b66906

Browse files
committedFeb 6, 2025
Release 0.1.0
1 parent 3ac5959 commit 5b66906

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed
 

‎.github/workflows/main.yaml

+20-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,25 @@ jobs:
5858
- if: github.ref_type == 'tag'
5959
run: '[[ "$(jq -r .version deno.json)" = "$GITHUB_REF_NAME" ]]'
6060
- 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
6180

6281
publish-docs:
6382
if: github.event_name == 'push'
@@ -87,4 +106,4 @@ jobs:
87106
- id: deploy
88107
uses: actions/deploy-pages@v4
89108

90-
# cSpell: ignore denoland
109+
# cSpell: ignore denoland softprops

‎CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ BotKit changelog
44
Version 0.1.0
55
-------------
66

7-
Initial release. To be released.
7+
Initial release. Released on February 7, 2025.

0 commit comments

Comments
 (0)