1 parent 037e6e6 commit 711b4f4Copy full SHA for 711b4f4
2 files changed
.github/actions/esphome-setup/action.yml
@@ -43,8 +43,8 @@ runs:
43
'device_api_key': key(),
44
}
45
46
- os.makedirs("examples", exist_ok=True)
+ os.makedirs("tests", exist_ok=True)
47
48
- with open("examples/secrets.yaml", "w") as f:
+ with open("tests/secrets.yaml", "w") as f:
49
for k, v in data.items():
50
f.write(f'{k}: "{v}"\n')
.github/workflows/esphome-ci.yml
@@ -14,7 +14,7 @@ jobs:
14
- uses: actions/checkout@v4
15
- id: find
16
run: |
17
- configs=$(find examples tests -type f \( -name '*.yaml' -o -name '*.yml' \) | sort | jq -R -s -c 'split("\n")[:-1]')
+ configs=$(find tests -type f \( -name '*.yaml' -o -name '*.yml' \) | sort | jq -R -s -c 'split("\n")[:-1]')
18
echo "configs=$configs" >> "$GITHUB_OUTPUT"
19
20
validate:
0 commit comments