Skip to content

Commit d591e43

Browse files
author
Yogthos
committed
Initial dirge documentation site — retro TUI theme
0 parents  commit d591e43

4 files changed

Lines changed: 2411 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
deploy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Copy site to docs/
18+
run: |
19+
mkdir -p docs
20+
cp index.html docs/
21+
22+
- name: Deploy to GitHub Pages
23+
run: |
24+
git config user.email "dmitri.sotnikov@gmail.com"
25+
git config user.name "Dmitri Sotnikov"
26+
git add docs/
27+
if [ -n "$(git status --porcelain)" ]; then
28+
git commit -m "Deploy #${{ github.run_number }}"
29+
git push
30+
fi

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
.DS_Store?
3+
._*
4+
.Spotlight-V100
5+
.Trashes

0 commit comments

Comments
 (0)