Skip to content

Commit

Permalink
fix: underline trust link
Browse files Browse the repository at this point in the history
  • Loading branch information
xynydev committed Apr 22, 2024
1 parent ae3580a commit 067d9ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/routes/new/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { readLogStream } from "$lib/ts/misc/logStream.js";
type SetupStep = "start" | "inprogress" | "cosign" | "done" | "failed";
let setupStep = "start" as SetupStep;
let setupStep: SetupStep = "cosign";
let log: Array<string> = [];
export let data;
Expand Down Expand Up @@ -140,8 +140,10 @@
important not to expose the cosign keys to third parties. BlueBuild can set
these up automatically for you. The keys will be generated in your browser and
transmitted over HTTPS to GitHub. If you do not trust BlueBuild to do this, you
can skip it for now and do it manually instead. <a
can skip it for now and do it manually instead.
<a
href="https://github.com/blue-build/workshop/blob/main/TRUST.md"
class="underline"
>
Read more about trust...
</a>
Expand Down

0 comments on commit 067d9ab

Please sign in to comment.