vod frog, frog with the vods
5
fork

Configure Feed

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

fix pipeline: add curl+cacert deps, add debug output to steps

+11 -2
+11 -2
.tangled/workflows/deploy.yaml
··· 7 7 dependencies: 8 8 nixpkgs: 9 9 - nodejs 10 + - curl 11 + - cacert 10 12 11 13 environment: 12 14 WISP_PASSWORD: "${{ secrets.WISP_PASSWORD }}" ··· 15 17 16 18 steps: 17 19 - name: "install" 18 - run: "npm ci" 20 + run: | 21 + echo "Node version: $(node --version)" 22 + echo "NPM version: $(npm --version)" 23 + npm ci 19 24 20 25 - name: "build" 21 - run: "npm run build" 26 + run: | 27 + npm run build 28 + echo "Build output:" 29 + ls -la build/ 22 30 23 31 - name: "install wisp-cli" 24 32 run: | 25 33 curl -L -o /tmp/wisp-cli https://github.com/psky-atp/wisp-cli/releases/latest/download/wisp-cli-x86_64-unknown-linux-gnu 26 34 chmod +x /tmp/wisp-cli 35 + echo "wisp-cli version: $(/tmp/wisp-cli --version)" 27 36 28 37 - name: "deploy to wisp" 29 38 run: |