Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaleidosium committed Feb 26, 2024
1 parent 2a7d5d4 commit 7de3815
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 21 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: Deploy to GitHub Pages
on:
push:
branches:
push:
branches:
- main

jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Checkout
uses: actions/checkout@master

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x

- name: Install and Build
run: |
npm install
npm run build
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x

- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.
- name: Install and Build
run: |
npm install
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
My Personal Website.

Written using [SvelteKit](https://kit.svelte.dev/), with SCSS.

## License

MIT
2 changes: 1 addition & 1 deletion src/routes/+layout.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const prerender = true
export const prerender = true;
1 change: 1 addition & 0 deletions src/routes/about/+page.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<svelte:head>

<title>About</title>
</svelte:head>

Expand Down
1 change: 1 addition & 0 deletions src/routes/originalcharacters/+page.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<svelte:head>

<title>Original Character</title>
</svelte:head>
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const config = {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter({fallback: '404.html'}),
adapter: adapter({ fallback: '404.html' }),
},
};

Expand Down

0 comments on commit 7de3815

Please sign in to comment.