diff --git a/apps/remix-ide/ci/publishIpfs b/apps/remix-ide/ci/publishIpfs index 674c2f58ac..8b27a33434 100755 --- a/apps/remix-ide/ci/publishIpfs +++ b/apps/remix-ide/ci/publishIpfs @@ -9,11 +9,13 @@ const folder = process.cwd() + '/temp_publish_docker'; const host = 'ipfs.komputing.org' // ethdev berlin ipfs node const ipfs = IpfsHttpClient({ host, port: 443, protocol: 'https' }) try { - let result = await ipfs.add(globSource(folder, { recursive: true, pin: false })) + let result = await ipfs.add(globSource(folder, { recursive: true}), { pin: false }) const remoteFolder = result[result.length - 1] - console.log('ipfs://' + remoteFolder.hash) - console.log('https://ipfsgw.komputing.org/ipfs/' + remoteFolder.hash) - console.log('https://gateway.ipfs.io/ipfs/' + remoteFolder.hash) + console.log('remoteFolder ====>', remoteFolder) + const hash = remoteFolder.cid.toString() + console.log('ipfs://' + hash) + console.log('https://ipfsgw.komputing.org/ipfs/' + hash) + console.log('https://gateway.ipfs.io/ipfs/' + hash) } catch (e) { console.log(e) }