A charming Jekyll theme. linus.arthr.dev/
jekyll-theme
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: adds new deploy script

+28
+28
.tangled/workflows/deploy.yml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["main"] 4 + 5 + engine: "nixery" 6 + 7 + clone: 8 + depth: 1 9 + 10 + dependencies: 11 + nixpkgs: 12 + - ruby_3_3 13 + - bundler 14 + - nodejs_22 15 + - gcc 16 + - gnumake 17 + - openssl 18 + - pkg-config 19 + 20 + steps: 21 + - name: "Install gems" 22 + command: "bundle install" 23 + 24 + - name: "Build site" 25 + command: "bundle exec jekyll build" 26 + 27 + - name: "Deploy to Cloudflare Pages" 28 + command: "npx wrangler pages deploy _site --project-name=linus --branch=main"