Skip to content

Commit

Permalink
chore: Update release workflow to include release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
anpigon committed May 23, 2024
1 parent 7e7f501 commit 4313ae1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
tag="${GITHUB_REF#refs/tags/}"
tag="${GITHUB_REF#refs/tags/}" \
git log $(git describe --tags --abbrev=0)..HEAD --oneline > release-notes.md && git add release-notes.md \
gh release create "$tag" \
--title="$tag" \
--draft \
--notes-file="release-notes.md" \
manifest.json build/main.js build/styles.css
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"id": "max-chatbot",
"name": "MAX",
"version": "0.0.1",
"version": "0.0.2",
"minAppVersion": "1.5.0",
"description": "Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) from Ollama, LM Studio, Anthropic, OpenAI, Mistral AI, and more for Obsidian.",
"author": "anpigon",
"authorUrl": "https://github.com/anpigon",
"fundingUrl": "https://buymeacoffee.com/anpigon",
"isDesktopOnly": false
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "max-chatbot",
"version": "2.0.0",
"version": "0.0.2",
"description": "Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) from Ollama, LM Studio, Anthropic, OpenAI, Mistral AI, and more for Obsidian.",
"main": "main.js",
"scripts": {
Expand Down
4 changes: 3 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{}
{
"0.0.2": "1.5.0"
}

0 comments on commit 4313ae1

Please sign in to comment.