From ea4d5135b64749ba1b5f97cdd1671f7ea2c8d8f6 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Thu, 25 Feb 2021 12:19:19 +0300 Subject: [PATCH] Fixed escaping in docs. --- docs.lisp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs.lisp b/docs.lisp index 5f634ff..5fbb14c 100644 --- a/docs.lisp +++ b/docs.lisp @@ -169,13 +169,13 @@ To make caching work, add such sections into your workflow file: - name: Grant All Perms to Make Cache Restoring Possible run: | sudo mkdir -p /usr/local/etc/roswell - sudo chown "${USER}" /usr/local/etc/roswell + sudo chown \"${USER}\" /usr/local/etc/roswell # Here the ros binary will be restored: - sudo chown "${USER}" /usr/local/bin + sudo chown \"${USER}\" /usr/local/bin - name: Get Current Month id: current-month run: | - echo "::set-output name=value::$(date -u "+%Y-%m")" + echo \"::set-output name=value::$(date -u \"+%Y-%m\")\" - name: Cache Roswell Setup id: cache uses: actions/cache@v2 @@ -188,7 +188,7 @@ To make caching work, add such sections into your workflow file: ~/.roswell /usr/local/etc/roswell .qlot - key: "${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles('qlfile.lock') }}" + key: \"${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles('qlfile.lock') }}\" - name: Restore Path To Cached Files run: | echo $HOME/.roswell/bin >> $GITHUB_PATH @@ -205,7 +205,7 @@ There are two important lines here. - The `key` value: ``` - key: "${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles('qlfile.lock') }}" + key: \"${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles('qlfile.lock') }}\" ``` It controls when your cache will be matched. If you are using `matrix`, put all it's components @@ -215,6 +215,7 @@ There are two important lines here. This way a new Roswell, Qlot and ASDF will be used in a build. ") + (defsection @roadmap (:title "Roadmap") " - Support [CLPM](https://gitlab.common-lisp.net/clpm/clpm).