Ensure extra docs config is appended (#1767)

Use of tee requires the argument '-a' to append, as current behaviour
will result in replacing the contents which is not intended. The config
settings should be in addition to the configured values.
This commit is contained in:
Darragh Bailey 2023-08-29 16:03:48 +01:00 committed by GitHub
parent 06fa756b98
commit 2cb600388b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ runs:
EOF
echo "Adding additional config settings:"
cat ${TEMP_CONFIG} | tee docs/_config.yml
cat ${TEMP_CONFIG} | tee -a docs/_config.yml
- name: Install and Build
shell: bash