-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
[![VyOS nightly build](https://github.com/vyos/vyos-nightly-build/actions/workflows/nightly-build.yml/badge.svg)](https://github.com/vyos/vyos-nightly-build/actions/workflows/nightly-build.yml) | ||
|
||
# vyos-rolling-nightly-builds | ||
Scheduled ISO nightly builds for current branch | ||
# About | ||
|
||
An official download page https://vyos.net/get/nightly-builds/ | ||
Scheduled VyOS image build - once per day (currently 00:00 UTC). | ||
|
||
Successfull builds will be published as GitHub Release and linked on 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/current/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 | ||
|
||
``` | ||
wget https://raw.githubusercontent.com/vyos/vyos-rolling-nightly-builds/main/minisign.pub | ||
wget https://github.com/vyos/vyos-rolling-nightly-builds/releases/download/1.5-rolling-202312191154/vyos-1.5-rolling-202312191154-amd64.iso | ||
wget https://github.com/vyos/vyos-rolling-nightly-builds/releases/download/1.5-rolling-202312191154/vyos-1.5-rolling-202312191154-amd64.iso.minisig | ||
minisign -Vm vyos-1.5-rolling-202312191154-amd64.iso | ||
``` | ||
|