Skip to content

Commit baea4e0

Browse files
committed
fix
1 parent f204fd9 commit baea4e0

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,16 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout your repository using git
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v5
2323
- name: Install, build, and upload your site
24-
uses: withastro/action@v1
25-
with:
24+
uses: withastro/action@v5
25+
# with:
2626
# path: . # The root location of your Astro project inside the repository. (optional)
27-
# node-version: 18 # The specific version of Node that should be used to build your site. Defaults to 18. (optional)
28-
package-manager: pnpm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
27+
# node-version: 24 # The specific version of Node that should be used to build your site. Defaults to 22. (optional)
28+
# package-manager: pnpm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
29+
# build-cmd: pnpm run build # The command to run to build your site. Runs the package build script/task by default. (optional)
30+
# env:
31+
# PUBLIC_POKEAPI: 'https://pokeapi.co/api/v2' # Use single quotation marks for the variable value. (optional)
2932

3033
deploy:
3134
needs: build
@@ -36,4 +39,4 @@ jobs:
3639
steps:
3740
- name: Deploy to GitHub Pages
3841
id: deployment
39-
uses: actions/deploy-pages@v1
42+
uses: actions/deploy-pages@v4

astro.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ import { defineConfig } from "astro/config"
33

44
// https://astro.build/config
55
export default defineConfig({
6-
site: "https://ssbit01.github.io/"
6+
site: "https://ssbit01.github.io"
77
})

0 commit comments

Comments
 (0)