Skip to content

Commit 32c52a1

Browse files
committed
migrate from jekyll to zola
- fork sf bitdevs minimal rust-based design - migrate past events from jekyll to zola format - preserve all jekyll urls via aliases - add rust calendar-gen tool for timezone handling - update nostr link from njump.me to nostr.eu - simplify navigation and homepage - add github actions deployment
1 parent f89963c commit 32c52a1

File tree

75 files changed

+4683
-0
lines changed

Some content is hidden

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

75 files changed

+4683
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
concurrency:
15+
group: "pages"
16+
cancel-in-progress: false
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
24+
- name: Install Zola
25+
run: |
26+
wget -q https://github.com/getzola/zola/releases/download/v0.19.2/zola-v0.19.2-x86_64-unknown-linux-gnu.tar.gz
27+
tar xzf zola-v0.19.2-x86_64-unknown-linux-gnu.tar.gz
28+
sudo mv zola /usr/local/bin/
29+
30+
- name: Build site
31+
run: zola build
32+
33+
- name: Upload artifact
34+
uses: actions/upload-pages-artifact@v3
35+
with:
36+
path: ./public
37+
38+
deploy:
39+
environment:
40+
name: github-pages
41+
url: ${{ steps.deployment.outputs.page_url }}
42+
runs-on: ubuntu-latest
43+
needs: build
44+
steps:
45+
- name: Deploy to GitHub Pages
46+
id: deployment
47+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,13 @@ vendor
2323

2424
# Avoid pushing .gz files created during rsync
2525
*.gz
26+
27+
# Zola
28+
public/
29+
30+
# Rust build artifacts
31+
bin/calendar-gen/target/
32+
bin/calendar-gen-bin
33+
34+
# Screenshots
35+
Pasted*.png

0 commit comments

Comments
 (0)