From 5601576da430e13f426c87ef62c4c4cf0b784d8c Mon Sep 17 00:00:00 2001 From: VR Date: Sat, 21 Jun 2025 22:08:18 +0100 Subject: [PATCH] Initial commit --- .gitea/workflows/publish.yaml | 16 ++++++++++++++++ .gitignore | 0 notes/1st-note.md | 10 ++++++++++ 3 files changed, 26 insertions(+) create mode 100644 .gitea/workflows/publish.yaml create mode 100644 .gitignore create mode 100644 notes/1st-note.md diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml new file mode 100644 index 0000000..243766b --- /dev/null +++ b/.gitea/workflows/publish.yaml @@ -0,0 +1,16 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + build-quartz: + runs-on: ubuntu-latest + container: + image: node:24.2 + steps: + - name: Clone local copy of Quartz + run: git clone https://k3gtpi.jumpingcrab.com/vlad/quartz-clone.git + - name: Copy notes to content directory + run: cp notes/* quartz-clone/content + - name: Build Quartz + run: cd quartz-clone && npm i && npx quartz create && npx quartz build diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/notes/1st-note.md b/notes/1st-note.md new file mode 100644 index 0000000..357bcd3 --- /dev/null +++ b/notes/1st-note.md @@ -0,0 +1,10 @@ +--- +title: Example Title +draft: false +tags: + - example-tag +--- + +1st note + +The rest of your content lives here. You can use **Markdown** here :)