Skip to content

Commit

Permalink
fixed domain name
Browse files Browse the repository at this point in the history
  • Loading branch information
akimoto committed Jun 7, 2024
1 parent 0d7c9de commit 70100a8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
cp -r mainproject/_site/* ./webroot/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.ACTIONS_DEPLOY_TOKEN }}
publish_dir: ./webroot
2 changes: 1 addition & 1 deletion mainproject/_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import base_path from "lume/plugins/base_path.ts";

const site = lume({
src: "./src",
location: new URL("http://lume.local:8007/"),
location: new URL("https://akky.github.io/"),
port: 80,
});

Expand Down
2 changes: 1 addition & 1 deletion subproject1/_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import base_path from "lume/plugins/base_path.ts";

const site = lume({
src: "./src",
location: new URL("http://lume.local:8007/subproject1/"),
location: new URL("https://akky.github.io/subproject1/"),
port: 80,
});

Expand Down
2 changes: 1 addition & 1 deletion subproject2/_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import base_path from "lume/plugins/base_path.ts";

const site = lume({
src: "./src",
location: new URL("http://lume.local:8007/subproject2/"),
location: new URL("https://akky.github.io/subproject2/"),
port: 80,
});

Expand Down

0 comments on commit 70100a8

Please sign in to comment.