mirror of
https://github.com/status-im/status-web.git
synced 2026-08-31 06:11:10 +00:00
* fix(community-dapp): skip foundryup attestation check on vercel foundryup parses the release attestation manifest through bash process substitution. Vercel's build container has no /dev/fd, so the redirection fails and `set -e` aborts the build: /vercel/.foundry/bin/foundryup: line 58: /dev/fd/63: No such file or directory foundryup is fetched unpinned, so this started failing with no repo change. * chore(community-dapp): pin foundry to v1.5.1 for vercel builds Vercel installed the latest release (v1.7.1) while ci.yml and release.yml pin v1.5.1, so contract ABIs were built with a different compiler there.