ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto

add netlify deploy pipeline

Changed files
+27 -1
.tangled
workflows
+3 -1
.gitignore
··· 1 1 .vscode/ 2 - node_modules/ 2 + node_modules/ 3 + # Local Netlify folder 4 + .netlify
+16
.tangled/workflows/deploy.yml
··· 1 + engine: nixery 2 + when: 3 + - event: ["push"] 4 + branch: ["main"] 5 + 6 + clone: 7 + skip: true 8 + 9 + dependencies: 10 + nixpkgs: 11 + - curl 12 + 13 + steps: 14 + - name: deploy 15 + command: | 16 + curl -X POST -d '{}' $NETLIFY_WEBHOOK_URL
+8
netlify.toml
··· 1 + [build] 2 + command = "npm run build" 3 + publish = "dist" 4 + 5 + [[redirects]] 6 + from = "/*" 7 + to = "/index.html" 8 + status = 200