summaryrefslogtreecommitdiff
path: root/README.md
blob: 560a5fba51e1e9a919ff6d3795fdd62254d508c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# About

Release/artifact store for VyOS nightly build images. This repository does not
run the build itself — it hosts the published nightly build
[GitHub Releases](https://github.com/vyos/vyos-nightly-build/releases) (ISO
images and their signatures), the signing public key, and `version.json` (the
latest-build pointer). The build runs in the VyOS build infrastructure, which
publishes the releases and updates `version.json` here on each successful nightly
build; the results are linked from the official download page
https://vyos.net/get/nightly-builds/

## How to check an image signature

Download signature public key

```
wget https://github.com/vyos/vyos-nightly-build/raw/refs/heads/rolling/minisign.pub
```

Download ISO image and signature file (example):

```
wget https://github.com/vyos/vyos-nightly-build/releases/download/1.5-rolling-202312191154/vyos-1.5-rolling-202312191154-amd64.iso
wget https://github.com/vyos/vyos-nightly-build/releases/download/1.5-rolling-202312191154/vyos-1.5-rolling-202312191154-amd64.iso.minisig
```

Verify signature

```
minisign -Vm vyos-1.5-rolling-202312191154-amd64.iso
```