slight enhancements for the user agent stylesheet slightcss.devins.page
css stylesheet framework lightweight

feat: wisp deployment

+32
+32
.tangled/workflows/wisp-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 + submodules: false 12 + 13 + dependencies: 14 + nixpkgs: 15 + - coreutils 16 + - curl 17 + 18 + environment: 19 + SITE_PATH: "." 20 + SITE_NAME: "slightcss.devins.page" 21 + WISP_HANDLE: "devins.page" 22 + 23 + steps: 24 + - name: deploy to wisp 25 + command: | 26 + curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 27 + chmod +x wisp-cli 28 + ./wisp-cli deploy \ 29 + "$WISP_HANDLE" \ 30 + --path "$SITE_PATH" \ 31 + --site "$SITE_NAME" \ 32 + --password "$WISP_APP_PASSWORD"