diff options
Diffstat (limited to '')
-rw-r--r-- | _tils/2020-11-30-storing-ci-data-on-git-notes.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_tils/2020-11-30-storing-ci-data-on-git-notes.md b/_tils/2020-11-30-storing-ci-data-on-git-notes.md index f37419f..f8dd063 100644 --- a/_tils/2020-11-30-storing-ci-data-on-git-notes.md +++ b/_tils/2020-11-30-storing-ci-data-on-git-notes.md @@ -103,19 +103,19 @@ index d1830ca..a4ccde7 100644 ``` Other tools such as [cgit][cgit] will also show notes on the web interface: -<https://euandreh.xyz/servers.git/commit?id=87c57133abd8be5d7cc46afbf107f59b26066575>. +<https://euandre.org/git/servers/commit?id=87c57133abd8be5d7cc46afbf107f59b26066575>. You can go even further: since cgit can serve raw blob directly, you can even serve such artifacts (log files, release artifacts, binaries) from cgit itself: ```shell $ SHA="$(git notes --ref=refs/notes/ci-logs list 87c57133abd8be5d7cc46afbf107f59b26066575)" -$ echo "https://euandreh.xyz/servers.git/blob?id=$SHA" -https://euandreh.xyz/servers.git/blob?id=1707a97bae24e3864fe7943f8dda6d01c294fb5c +$ echo "https://euandre.org/git/servers/blob?id=$SHA" +https://euandre.org/git/servers/blob?id=1707a97bae24e3864fe7943f8dda6d01c294fb5c ``` And like that you'll have cgit serving the artifacts for you: -<https://euandreh.xyz/servers.git/blob?id=1707a97bae24e3864fe7943f8dda6d01c294fb5c>. +<https://euandre.org/git/servers/blob?id=1707a97bae24e3864fe7943f8dda6d01c294fb5c>. [previous-article]: {% link _tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md %} [git-notes]: https://git-scm.com/docs/git-notes |