This repository has no description
0

Configure Feed

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

deploy smoke test with flake wispctl

+13 -4
+13 -4
.tangled/workflows/test.yml
··· 9 9 https://wispplace.cachix.org: "wispplace.cachix.org-1:v+eZmUCZ9UGLyOCK4lFZvZKMCGCnBPOKDM+Q7ll1Jmw=" 10 10 11 11 dependencies: 12 - - git+https://tangled.org/nekomimi.pet/wisp.place-monorepo?ref=main#default 12 + - git+https://tangled.org/nekomimi.pet/wisp.place-monorepo#default 13 13 14 14 steps: 15 - - name: verify wispctl from the pinned Tangled flake 15 + - name: deploy index.html with wispctl from the Tangled flake 16 16 command: | 17 17 test -s index.html 18 - test "$(wispctl --version)" = "1.1.3" 19 - wispctl --help 18 + test -n "${WISP_APP_PASSWORD:-}" || { 19 + echo "WISP_APP_PASSWORD is required to deploy the smoke-test site" >&2 20 + exit 1 21 + } 22 + mkdir -p .wisp-deploy 23 + cp index.html .wisp-deploy/index.html 24 + wispctl nekomimi.pet \ 25 + --path .wisp-deploy \ 26 + --site wispctl-flake-smoke-test \ 27 + --password "$WISP_APP_PASSWORD" \ 28 + --yes