Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Build and deploy Docusaurus to GitHub Pages

on:
push:
branches: [ master ]
pull_request:
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '24'

- name: Install dependencies
run: npm ci

- name: Build site
run: npm run build

- name: Configure GitHub Pages
uses: actions/configure-pages@v5

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./build

deploy:
if: github.ref == 'refs/heads/master'
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
timeout: 600000
24 changes: 20 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# R0Wi.github.io

This is the source code for my personal website built with Docusaurus. It contains my blog posts, projects, and other information about me. Feel
free to check it out at [https://r0wi.github.io](https://r0wi.github.io).


14 changes: 14 additions & 0 deletions blog/2026-01-03/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: My first blog post
description: This is my first post on Docusaurus.
slug: my-first-blog-post
authors:
- robin
tags: [hello]
---

This is my first blog post on Docusaurus.

<!-- truncate -->

There will be more to come soon! Stay tuned.
9 changes: 9 additions & 0 deletions blog/authors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
robin:
name: Robin Windey
title: Fullstack Developer
url: https://github.com/R0Wi
image_url: /img/profile.jpg
page: false
socials:
linkedin: https://www.linkedin.com/in/robin-windey-1a58411a5/
github: R0Wi
4 changes: 4 additions & 0 deletions blog/tags.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
hello:
label: Hello
permalink: /hello
description: Hello tag description
Loading