vod frog, frog with the vods
5
fork

Configure Feed

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

fix pipeline: use single-line run commands instead of multi-line blocks

+4 -19
+4 -19
.tangled/workflows/deploy.yaml
··· 17 17 18 18 steps: 19 19 - name: "install" 20 - run: | 21 - echo "Node version: $(node --version)" 22 - echo "NPM version: $(npm --version)" 23 - npm ci 20 + run: "npm ci" 24 21 25 22 - name: "build" 26 - run: | 27 - npm run build 28 - echo "Build output:" 29 - ls -la build/ 23 + run: "npm run build" 30 24 31 25 - name: "install wisp-cli" 32 - run: | 33 - curl -L -o /tmp/wisp-cli https://github.com/psky-atp/wisp-cli/releases/latest/download/wisp-cli-x86_64-unknown-linux-gnu 34 - chmod +x /tmp/wisp-cli 35 - echo "wisp-cli version: $(/tmp/wisp-cli --version)" 26 + run: "curl -L -o /tmp/wisp-cli https://github.com/psky-atp/wisp-cli/releases/latest/download/wisp-cli-x86_64-unknown-linux-gnu && chmod +x /tmp/wisp-cli" 36 27 37 28 - name: "deploy to wisp" 38 - run: | 39 - /tmp/wisp-cli deploy "$WISP_HANDLE" \ 40 - --path build \ 41 - --site "$WISP_SITE" \ 42 - --password "$WISP_PASSWORD" \ 43 - --spa \ 44 - -y 29 + run: "/tmp/wisp-cli deploy $WISP_HANDLE --path build --site $WISP_SITE --password $WISP_PASSWORD --spa -y"