Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusJx authored Mar 18, 2022
1 parent 91f257c commit 9241b9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Supported values are ``2016`` (windows, until boost v1.78.0), ``2019`` (windows)

### `boost_install_dir`
**Optional** The directory to install boost into. If specified, boost will be installed into
``$boost_install_dir/boost/boost/``. The default value is ``${{env.GITHUB_WORKSPACE}}``.
``$boost_install_dir/boost/boost/``. The default value is ``${{github.workspace}}``.

### `version`
**Optional** The version of the ``install-boost`` action to use. Must be either ``default`` or ``legacy``. Defaults to ``default``.
Expand Down Expand Up @@ -188,7 +188,7 @@ If you want to cache the boost versions to further accelerate your builds, you c
id: cache-boost
with:
# Set the default path as the path to cache
path: ${{env.GITHUB_WORKSPACE}}/boost/boost
path: ${{github.workspace}}/boost/boost
# Use the version as the key to only cache the correct version
key: boost-${{BOOST_VERSION}}
Expand All @@ -210,7 +210,7 @@ jobs:
# Set your boost version
BOOST_VERSION: 1.78.0
# Set you boost path to the default one (I don't know if you can use variables here)
BOOST_PATH: ${{env.GITHUB_WORKSPACE}}/boost/boost
BOOST_PATH: ${{github.workspace}}/boost/boost
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -240,4 +240,4 @@ jobs:
platform_version: 2019
# Set the toolset
toolset: msvc
```
```

0 comments on commit 9241b9d

Please sign in to comment.