Skip to content

Commit 9e76797

Browse files
Fix samples path in workflow (#413)
* fix samples path in workflow Signed-off-by: Michael Valdron <[email protected]> * fix documentation Signed-off-by: Michael Valdron <[email protected]> --------- Signed-off-by: Michael Valdron <[email protected]>
1 parent 66a5a95 commit 9e76797

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/validate-samples.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ jobs:
6161

6262
- name: Validate samples
6363
if: ${{ env.STACKS != '' }}
64-
run: STACKS_DIR=$(pwd)/samples/.cache bash tests/validate_devfile_schemas.sh --samples
64+
run: STACKS_DIR=$(pwd)/.cache/samples bash tests/validate_devfile_schemas.sh --samples

tests/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
- One can test the child samples using the [validate_devfile_schemas](./validate_devfile_schemas/) test suite by performing the following:
2222
```sh
2323
export STACKS=$(bash tests/build_parents_file.sh)
24-
STACKS_DIR=samples/.cache bash tests/validate_devfile_schemas.sh --samples
24+
STACKS_DIR=.cache/samples bash tests/validate_devfile_schemas.sh --samples
2525
```
2626

2727
## Validating non-terminating images

0 commit comments

Comments
 (0)