Skip to content

Commit 39d5258

Browse files
committed
upd
1 parent 7264535 commit 39d5258

75 files changed

Lines changed: 7259 additions & 1873 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
# Trigger the workflow every time you push to the `main` branch
5+
push:
6+
branches: [ main ]
7+
# Allows you to run this workflow manually from the Actions tab on GitHub.
8+
workflow_dispatch:
9+
10+
# Allow this job to clone the repo and create a page deployment
11+
permissions:
12+
contents: read
13+
pages: write
14+
id-token: write
15+
16+
jobs:
17+
build:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout your repository using git
21+
uses: actions/checkout@v4
22+
- name: Install, build, and upload your site
23+
uses: withastro/action@v2
24+
with:
25+
path: . # The root location of your Astro project inside the repository. (optional)
26+
node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 18. (optional)
27+
package-manager: npm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
28+
29+
deploy:
30+
needs: build
31+
runs-on: ubuntu-latest
32+
environment:
33+
name: github-pages
34+
url: ${{ steps.deployment.outputs.page_url }}
35+
steps:
36+
- name: Deploy to GitHub Pages
37+
id: deployment
38+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
1+
# generated types
2+
.astro/
3+
4+
# dependencies
5+
node_modules/
6+
7+
# logs
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
pnpm-debug.log*
12+
13+
# environment variables
14+
.env
15+
.env.production
16+
17+
# macOS-specific files
118
.DS_Store

about.html

Lines changed: 0 additions & 6 deletions
This file was deleted.

about/index.html

Lines changed: 0 additions & 6 deletions
This file was deleted.

assets/icons/ea.png

-9.75 KB
Binary file not shown.

assets/icons/file.png

-2.36 KB
Binary file not shown.

assets/icons/github.png

-4.76 KB
Binary file not shown.

assets/icons/gw.jpg

-558 KB
Binary file not shown.

assets/icons/gwwc.png

-5.27 KB
Binary file not shown.

assets/icons/mail.png

-3.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)