Standard.site landing page built in Next.js
0
fork

Configure Feed

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

Add sequoia publish/inject to deploy workflow and fix env vars

+6 -4
+6 -4
.tangled/workflows/deploy.yml
··· 21 21 environment: 22 22 SITE_PATH: './out' 23 23 SITE_NAME: 'Standard.site' 24 - WISP_HANDLE: 'standard.site' 25 24 26 25 steps: 27 26 - name: build site 28 27 command: | 29 28 export PATH="$HOME/.nix-profile/bin:$PATH" 30 29 bun install --frozen-lockfile 30 + bun install -g sequoia-cli 31 + sequoia publish 31 32 bun node_modules/.bin/next build 33 + sequoia inject 32 34 33 35 - name: deploy to wisp 34 36 command: | 35 37 curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 36 38 chmod +x wisp-cli 37 - ./wisp-cli deploy "$WISP_HANDLE" \ 38 - --path "$BUILD_PATH" \ 39 + ./wisp-cli deploy "$ATP_IDENTIFIER" \ 40 + --path "$SITE_PATH" \ 39 41 --site "$SITE_NAME" \ 40 - --password "$WISP_APP_PASSWORD" 42 + --password "$ATP_APP_PASSWORD"