Skip to content

Commit 2382453

Browse files
committed
upload new website
1 parent 8c8e4cb commit 2382453

17 files changed

+1638
-635
lines changed

.github/workflows/upload-page.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Deploy Website
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
permissions:
6+
contents: read
7+
pages: write
8+
id-token: write
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: '18'
20+
21+
- name: Install dependencies (if needed)
22+
run: |
23+
# Add any build dependencies here if needed
24+
echo "No build dependencies required for static site"
25+
26+
- name: Upload artifact
27+
uses: actions/upload-pages-artifact@v3
28+
with:
29+
path: "."
30+
31+
deploy:
32+
runs-on: ubuntu-latest
33+
needs: build
34+
steps:
35+
- name: Deploy to GitHub Pages
36+
id: deployment
37+
uses: actions/deploy-pages@v4
38+
environment:
39+
name: github-pages
40+
url: ${{ steps.deployment.outputs.page_url }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

_static/logo.png

131 KB
Loading

_static/no_background_nocolor.png

364 KB
Loading

_static/rolling_pics/1gcircum.png

664 KB
Loading
File renamed without changes.
File renamed without changes.

documentation.html

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

0 commit comments

Comments
 (0)