File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy GitHub Pages
2+
3+ on :
4+ push :
5+ branches : [main]
6+ workflow_dispatch :
7+
8+ permissions :
9+ contents : read
10+ pages : write
11+ id-token : write
12+
13+ concurrency :
14+ group : pages
15+ cancel-in-progress : true
16+
17+ jobs :
18+ deploy :
19+ runs-on : ubuntu-latest
20+ steps :
21+ - name : Checkout
22+ uses : actions/checkout@v4
23+
24+ - name : Setup Pages
25+ uses : actions/configure-pages@v5
26+
27+ - name : Upload static site artifact
28+ uses : actions/upload-pages-artifact@v3
29+ with :
30+ path : .
31+
32+ - name : Deploy to GitHub Pages
33+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 1+ # IDE
2+ .vscode /
3+ .idea /
4+
5+ # OS
6+ .DS_Store
7+ Thumbs.db
8+ * .swp
9+ * .swo
10+
11+ # Build/Temp (if any)
12+ node_modules /
13+ dist /
14+ build /
15+
16+ # Logs
17+ * .log
18+
19+ # Env
20+ .env
21+ .env.local
22+ .venv /
23+ __pycache__ /
You can’t perform that action at this time.
0 commit comments