Use "${ENVVAR}" instead of ${{ env.ENVVAR }} syntax in GitHub Actions (#5923)

This commit is contained in:
Ayaz Salikhov
2025-10-22 22:43:04 +04:00
committed by GitHub
parent 7c39c810eb
commit 5e33ca56fd
7 changed files with 21 additions and 21 deletions

View File

@@ -48,8 +48,8 @@ jobs:
doxygen --version
- name: Build documentation
run: |
mkdir -p ${{ env.BUILD_DIR }}
cd ${{ env.BUILD_DIR }}
mkdir -p "${BUILD_DIR}"
cd "${BUILD_DIR}"
cmake -Donly_docs=ON ..
cmake --build . --target docs --parallel $(nproc)
- name: Publish documentation