From 70cbf4628c129d64fd7e714c16397507a2497b13 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sat, 11 May 2024 16:27:40 +0530 Subject: [PATCH] feat: add URL remote module example --- recipe.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/recipe.yml b/recipe.yml index 91c923f..ea79b11 100644 --- a/recipe.yml +++ b/recipe.yml @@ -36,8 +36,9 @@ stages: - name: example-modules # Sample module demonstatrating importing local and remote modules type: includes includes: - - modules/50-install-debs.yml # This is a local module present in this repository - - gh:vanilla-os/dev-image:main:modules/00-basics.yml # This is a remote module in the format: `gh:your-name/your-repo:branch:modules/file.yml` + - modules/50-install-debs.yml # Sample local module present in this repository + - gh:vanilla-os/dev-image:main:modules/00-basics.yml # Sample GitHub remote module in the format: `gh:your-name/your-repo:branch:modules/file.yml` + - https://raw.githubusercontent.com/Vanilla-OS/dev-image/main/modules/05-go.yml # Sample full URL remote module # Put your custom actions before this comment