Skip to content

Commit

Permalink
feat(release.yml): update build paths in release workflow
Browse files Browse the repository at this point in the history
feat(manifest.json): increment version number to 0.8.10
feat(package.json): increment version number to 0.8.10
feat(versions.json): add version 0.8.10 entry
  • Loading branch information
anpigon committed Nov 15, 2024
1 parent cf49dd9 commit f8bee3d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
git log "$(git describe --tags --abbrev=0)"..HEAD --oneline > release-notes.md
# 파일 존재 확인
files=("manifest.json" "main.js" "styles.css")
files=("manifest.json" "build/main.js" "build/styles.css")
for file in "${files[@]}"; do
if [ ! -f "$file" ]; then
echo "Error: 빌드 결과물 '$file'을 찾을 수 없습니다. 빌드 단계가 성공적으로 완료되었는지 확인해주세요."
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "max-chatbot",
"name": "MAX",
"version": "0.8.9",
"version": "0.8.10",
"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",
Expand Down
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": "0.8.9",
"version": "0.8.10",
"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
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@
"0.8.6": "1.5.0",
"0.8.7": "1.5.0",
"0.8.8": "1.5.0",
"0.8.9": "1.5.0"
"0.8.9": "1.5.0",
"0.8.10": "1.5.0"
}

0 comments on commit f8bee3d

Please sign in to comment.