This repository has no description
0

Configure Feed

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

core / .tangled / workflows / deploy-blog.yml
623 B 33 lines
1engine: nixery 2when: 3 - event: push 4 branch: master 5 6dependencies: 7 nixpkgs: 8 - go 9 - gcc 10 - nodejs 11 - tailwindcss 12 13steps: 14 - name: patch static dir 15 command: | 16 mkdir -p appview/pages/static 17 touch appview/pages/static/x 18 19 - name: generate css 20 command: | 21 tailwindcss -i input.css -o appview/pages/static/tw.css 22 23 - name: build blog cmd 24 command: | 25 go build -o blog.out ./cmd/blog 26 27 - name: build static site 28 command: | 29 ./blog.out build 30 31 - name: deploy 32 command: | 33 npx --yes wrangler pages deploy --branch master --project-name tangled-blog ./build