Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
vornkat-iis committed Aug 16, 2023
1 parent f8fb6bc commit 9dcd0e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pages_static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ jobs:
submodules: true

- name: Configure CMake
run: cmake3 -B $GITHUB_WORKSPACE/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
run: cmake3 -B ${{ env.GITHUB_WORKSPACE }}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Create Docs
working-directory: $GITHUB_WORKSPACE/build
working-directory: ${{ env.GITHUB_WORKSPACE }}/build
run: make doc

- name: Upload artifacts
uses: actions/upload-pages-artifact@v2
with:
path: 'build/doc/html/*'
path: '${{ env.GITHUB_WORKSPACE }}/build/doc/html/'

deploy:
environment:
Expand Down

0 comments on commit 9dcd0e1

Please sign in to comment.