From 5d62bd065c9831f45ad3a4db527b56f31a627cf4 Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Sat, 13 Jan 2024 13:39:16 +0100 Subject: [PATCH] feat: Add CI/CD --- .woodpecker.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..2c3224e --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,16 @@ +steps: + build: + image: alpine:3.19 + commands: + - apk add --no-cache zola npm + - npm install -D tailwindcss @tailwindcss/typography + - npx tailwindcss -i input.css -o static/css/index.css --minify + - zola build + deploy: + image: git.polynom.me/papatutuwawa/woodpecker-ssg-deploy@sha256:9cfec13eb8ab1b8920c2f1f00f0258a7bfd159fe4e14e0985328086392c0da34 + secrets: [ ssh_key ] + settings: + email: "ci@polynom.me" + name: "polynom.me CI system" + token_env: "SSH_KEY" + output: "public" \ No newline at end of file