We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 493eeda commit 4e3bba5Copy full SHA for 4e3bba5
1 file changed
.github/workflows/main.yml
@@ -43,7 +43,7 @@ jobs:
43
touch secrets.yaml
44
echo 'wifi_ssid: "ssid"' >> secrets.yaml
45
echo 'wifi_password: "password"' >> secrets.yaml
46
- echo 'api_key: key' >> secrets.yaml
47
- echo 'ota_password: password' >> secrets.yaml
+ buf="";for n in {0..31}; do buf+="\\x$n"; done; printf '%b' "$buf" | base64 | xargs printf 'api_key: "%s"\n' >> secrets.yaml
+ buf="";for n in {0..31}; do buf+="\\x$n"; done; printf '%b' "$buf" | base64 | xargs printf 'ota_password: "%s"\n' >> secrets.yaml
48
- name: Compile test configuration
49
run: esphome compile test.yaml
0 commit comments