Fixed escaping in docs.
This commit is contained in:
parent
1a2d24d58d
commit
ea4d5135b6
1 changed files with 6 additions and 5 deletions
11
docs.lisp
11
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).
|
||||
|
|
Loading…
Reference in a new issue