Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build-and-run-example-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: actions/upload-artifact@v6
with:
name: smart-doc-maven-jar
path: ~/.m2/repository/com/ly/smart-doc
path: ~/.m2/repository/com/github/shalousun
if-no-files-found: error

- name: Upload Build Log
Expand Down Expand Up @@ -87,11 +87,11 @@ jobs:

- name: Move Files to Local Maven Repository
run: |
mkdir -p ~/.m2/repository/com/ly/smart-doc
mkdir -p ~/.m2/repository/com/github/shalousun
echo "Overwriting target directory with new artifacts:"
rsync -av --delete ./artifacts/ ~/.m2/repository/com/ly/smart-doc/
rsync -av --delete ./artifacts/ ~/.m2/repository/com/github/shalousun/
echo "Listing files in target directory:"
ls -lh ~/.m2/repository/com/ly/smart-doc
ls -lh ~/.m2/repository/com/github/shalousun

- name: Update Version in pom.xml
run: |
Expand All @@ -110,7 +110,7 @@ jobs:
uses: actions/upload-artifact@v6
with:
name: smart-doc-maven-plugin-jar
path: ~/.m2/repository/com/ly/smart-doc
path: ~/.m2/repository/com/github/shalousun
if-no-files-found: error

- name: Upload Plugin Build Log
Expand Down Expand Up @@ -154,11 +154,11 @@ jobs:

- name: Move Files to Local Maven Repository
run: |
mkdir -p ~/.m2/repository/com/ly/smart-doc
mkdir -p ~/.m2/repository/com/github/shalousun
echo "Overwriting target directory with new artifacts:"
rsync -av --delete ./artifacts/ ~/.m2/repository/com/ly/smart-doc/
rsync -av --delete ./artifacts/ ~/.m2/repository/com/github/shalousun/
echo "Listing files in target directory:"
ls -lh ~/.m2/repository/com/ly/smart-doc
ls -lh ~/.m2/repository/com/github/shalousun

- name: Update Smart-Doc Version in pom.xml
run: |
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
- name: Move Files to Local Maven Repository
run: |
if [[ "${{ matrix.os }}" == "ubuntu-latest" || "${{ matrix.os }}" == "macos-latest" ]]; then
TARGET_DIR=~/.m2/repository/com/ly/smart-doc/
TARGET_DIR=~/.m2/repository/com/github/shalousun/
mkdir -p "$TARGET_DIR" || echo "Directory already exists"
rsync -av --delete ./artifacts/ "$TARGET_DIR"
elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"serverUrl": "http://127.0.0.1",
"isStrict": false,
"allInOne": true,
"outPath": "D://md2",
"outPath": "md2",
"coverOld": true,
"allInOneDocFileName": "demoProject.html",
"allInOneDocFileName": "demo.html",
"packageFilters": "",
"md5EncryptedHtmlName": false,
"projectName": "smart-doc",
Expand Down
Loading