From 6a94468045f7b47180b3ea79f757a7f10872830c Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Wed, 18 Sep 2024 11:45:08 -0700 Subject: [PATCH] feat: adds root blueprint --- blueprint.cue | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 blueprint.cue diff --git a/blueprint.cue b/blueprint.cue new file mode 100644 index 0000000..5a2f944 --- /dev/null +++ b/blueprint.cue @@ -0,0 +1,17 @@ +version: "1.0" +global: ci: { + local: [ + "^check.*$", + "^build.*$", + "^test.*$", + "^release.*$", + "^publish.*$", + ] + registries: [ + "ghcr.io/input-output-hk/catalyst-forge-playground", + ] + provider: github: registry: "ghcr.io" + tagging: { + strategy: "commit" + } +}