Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
fix: use the new recipes directory for storing recipes :)
Browse files Browse the repository at this point in the history
  • Loading branch information
tulilirockz committed Apr 18, 2024
1 parent 1092315 commit 4551309
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
shell: bash
run: |
sudo apt install -y jsonnet
mkdir config/recipes
mkdir recipes
RECIPES=$(jsonnet ./config/templates/recipe-std.jsonnet -m ./config/recipes -y)
RECIPES=$(jsonnet ./config/templates/recipe-std.jsonnet -m ./recipes -y)
# newlines replaced with spaces
echo "Generated recipes: ${RECIPES//$'\n'/ }"
Expand Down Expand Up @@ -70,8 +70,8 @@ jobs:
id: recipe_meta
run: |
sudo apt install -y jsonnet
mkdir config/recipes
jsonnet ./config/templates/recipe-std.jsonnet -m ./config/recipes -y
mkdir recipes
jsonnet ./config/templates/recipe-std.jsonnet -m ./recipes -y
echo "IMAGE_NAME=$(yq '.name' ./${{matrix.recipe}} )" >> $GITHUB_OUTPUT
echo "IMAGE_DESCRIPTION=$(yq '.description' ./${{matrix.recipe}} )" >> $GITHUB_OUTPUT
Expand Down
16 changes: 8 additions & 8 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4551309

Please sign in to comment.