5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-09-19 16:09:36 +00:00
yggdrasil-network.github.io/builds.md
2018-03-12 18:44:17 -05:00

22 lines
518 B
Markdown

---
tags: dontlink
---
# Builds
Build [artifacts](https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts):
<script type="text/javascript">
let url = 'https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts';
fetch(url)
.then(res => res.json())
.then(function (bins) {
for (var idx in bins) {
var bin = bins[idx]
console.log("<a href=\"" + bin.url + "\">" + bin.path + "</a><br/>");
}
})
.catch(err => { throw err });
</script>