Fix quotes
This commit is contained in:
parent
b1b0290703
commit
0cd7a55bf3
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build_docs.yml
vendored
6
.github/workflows/build_docs.yml
vendored
|
@ -95,10 +95,10 @@ jobs:
|
||||||
id: get-hexdoc-cmd
|
id: get-hexdoc-cmd
|
||||||
run: |
|
run: |
|
||||||
if [[ '${{ steps.checkout-input.outcome }}' == 'skipped' ]]; then
|
if [[ '${{ steps.checkout-input.outcome }}' == 'skipped' ]]; then
|
||||||
props='doc/properties.toml'
|
props=doc/properties.toml
|
||||||
else
|
else
|
||||||
props='_checkout/doc/properties.toml'
|
props=_checkout/doc/properties.toml
|
||||||
echo "HATCH_GRADLE_DIR='_checkout'" >> "$GITHUB_ENV"
|
echo "HATCH_GRADLE_DIR=_checkout" >> "$GITHUB_ENV"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
hexdoc="hexdoc $props --ci --is-release ${{ steps.check-release.outputs.release == true }} --update-latest ${{ github.event_name != 'workflow_dispatch' || inputs.update-latest }}"
|
hexdoc="hexdoc $props --ci --is-release ${{ steps.check-release.outputs.release == true }} --update-latest ${{ github.event_name != 'workflow_dispatch' || inputs.update-latest }}"
|
||||||
|
|
Loading…
Reference in a new issue