Skip to content

Commit

Permalink
Experimenting with higher level directories
Browse files Browse the repository at this point in the history
  • Loading branch information
nguy8tri committed Sep 17, 2024
1 parent ddc05a2 commit 0e58dca
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,24 +56,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Coverage
run: |
make coverage
if [ "${{ github.ref_name }}" = "main" ]; then
echo "Placing coverage into \"coverage\""
else
mv build/documentation/coverage build/documentation/coverage-${{ github.ref_name }}
echo "Placing coverage into \"coverage-${{ github.ref_name }}\""
fi
run: make coverage
- name: Doxygen
run: make doxygen_generate
- name: Install rsync
run: apt install -y rsync
- name: Upload Pages Artifact
uses: JamesIves/github-pages-deploy-action@v4
with:
name: Documentation
branch: documentation
folder: build/documentation
folder: build/documentation/${{ github.ref_name }}

documentation-upload:
needs: documentation
Expand Down

0 comments on commit 0e58dca

Please sign in to comment.