1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-27 05:57:09 +00:00

Fix command for disable content-trust (#3078)

This commit is contained in:
Pascal Vizeli
2021-08-26 17:18:00 +02:00
committed by GitHub
parent 8572f8c4e5
commit 1b0eb9397d

View File

@@ -278,7 +278,7 @@ jobs:
if: needs.init.outputs.publish == 'true'
run: |
echo "Enable Content-Trust"
test=$(docker exec hassio_cli ha supervisor options --content-trust=true --no-progress --raw-json | jq -r '.result')
test=$(docker exec hassio_cli ha security options --content-trust=true --no-progress --raw-json | jq -r '.result')
if [ "$test" != "ok" ];then
docker logs hassio_supervisor
exit 1