Skip to content

Commit 3566294

Browse files
authored
Merge pull request #12 from aave/fix/dweb-links
fix: use dweb for ipfs defaults
2 parents f142c26 + e7fa80d commit 3566294

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ cleanupAndPin().then(async (hash) => {
4949
core.setOutput("hash", hash);
5050
let uri;
5151
if (CID_VERSION == 1) {
52-
uri = `https://${hash}.ipfs.cf-ipfs.com/`;
52+
uri = `https://${hash}.ipfs.dweb.link/`;
5353
} else if (CID_VERSION == 0) {
54-
uri = `https://cloudflare-ipfs.com/ipfs/${hash}/`;
54+
uri = `https://dweb.link/ipfs/${hash}/`;
5555
}
5656
core.setOutput("uri", uri);
5757
const GITHUB_TOKEN = core.getInput("GITHUB_TOKEN");

0 commit comments

Comments
 (0)