I get told to shut up a lot by my friend. This is the microsite that documents this in detail. shutup.jp
postcards microsite

build: add workflow for tangled

authored by byjp.me and committed by

GitHub 581926cd 718d79bc

Waiting for spindle ...
+39
+39
.tangled/workflows/deploy.yaml
··· 1 + when: 2 + - event: ['push'] 3 + branch: ['main'] 4 + - event: ['manual'] 5 + 6 + engine: 'nixery' 7 + 8 + clone: 9 + skip: false 10 + depth: 1 11 + 12 + dependencies: 13 + nixpkgs: 14 + - coreutils 15 + - curl 16 + - go 17 + - proj 18 + - libwebp 19 + 20 + environment: 21 + SITE_NAME: shutup.jp 22 + WISP_HANDLE: byjp.me 23 + 24 + steps: 25 + - name: Build site 26 + command: go run . 27 + 28 + - name: Download wisp 29 + command: | 30 + curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 31 + chmod +x wisp-cli 32 + 33 + - name: Upload site 34 + command: | 35 + ./wisp-cli \ 36 + "$WISP_HANDLE" \ 37 + --path "./dist" \ 38 + --site "$SITE_NAME" \ 39 + --password "$WISP_APP_PASSWORD"