An educational pure functional programming library in TypeScript
2
fork

Configure Feed

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

Fix CI: use TANGLED_REF instead of SPINDLE_REF

+1 -3
+1 -3
.tangled/workflows/ci.yml
··· 47 47 48 48 - name: "Publish to npm (on version tag)" 49 49 command: | 50 - echo "DEBUG: All env vars:" 51 - env 52 - if [[ "${SPINDLE_REF}" == refs/tags/v* ]]; then 50 + if [[ "${TANGLED_REF}" == refs/tags/v* ]]; then 53 51 echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc 54 52 npm publish --access public 55 53 echo "Published $(node -p "require('./package.json').version") to npm"