From 56ab49158797571873e7cd2db4b79b55ca3d8887 Mon Sep 17 00:00:00 2001 From: Adam Jeniski Date: Sat, 15 Nov 2025 23:01:23 -0500 Subject: [PATCH] init ci --- .gitea/workflows/ssg.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/ssg.yaml diff --git a/.gitea/workflows/ssg.yaml b/.gitea/workflows/ssg.yaml new file mode 100644 index 0000000..c9aac0e --- /dev/null +++ b/.gitea/workflows/ssg.yaml @@ -0,0 +1,15 @@ +name: Deploy ${{ gitea.repository }} +run-name: ${{ gitea.actor }} is deploying ajet.fyi ${{ gitea.repository }} +on: + push: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - run: "cargo install mdbook" + - run: "mdbook build"