Skip to content

Commit 711b4f4

Browse files
committed
update secrets
1 parent 037e6e6 commit 711b4f4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/esphome-setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ runs:
4343
'device_api_key': key(),
4444
}
4545
46-
os.makedirs("examples", exist_ok=True)
46+
os.makedirs("tests", exist_ok=True)
4747
48-
with open("examples/secrets.yaml", "w") as f:
48+
with open("tests/secrets.yaml", "w") as f:
4949
for k, v in data.items():
5050
f.write(f'{k}: "{v}"\n')

.github/workflows/esphome-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- id: find
1616
run: |
17-
configs=$(find examples tests -type f \( -name '*.yaml' -o -name '*.yml' \) | sort | jq -R -s -c 'split("\n")[:-1]')
17+
configs=$(find tests -type f \( -name '*.yaml' -o -name '*.yml' \) | sort | jq -R -s -c 'split("\n")[:-1]')
1818
echo "configs=$configs" >> "$GITHUB_OUTPUT"
1919
2020
validate:

0 commit comments

Comments
 (0)