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 'command' instead of 'run' per tangled docs

goose.art e1255166 f1224876

+4 -4
+4 -4
.tangled/workflows/deploy.yaml
··· 17 17 18 18 steps: 19 19 - name: "install" 20 - run: "npm ci" 20 + command: "npm ci" 21 21 22 22 - name: "build" 23 - run: "npm run build" 23 + command: "npm run build" 24 24 25 25 - name: "install wisp-cli" 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" 26 + command: "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" 27 27 28 28 - name: "deploy to wisp" 29 - run: "/tmp/wisp-cli deploy $WISP_HANDLE --path build --site $WISP_SITE --password $WISP_PASSWORD --spa -y" 29 + command: "/tmp/wisp-cli deploy $WISP_HANDLE --path build --site $WISP_SITE --password $WISP_PASSWORD --spa -y"