Skip to content

Commit

Permalink
tweak build
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Aug 29, 2023
1 parent 4853a60 commit f5a14d2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 63 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/docs.yml

This file was deleted.

19 changes: 16 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ on:
- develop
tags:
- 'v*'
paths-ignore:
- 'docs/**'
pull_request:
branches:
- master
Expand Down Expand Up @@ -79,7 +77,7 @@ jobs:
if: success()
uses: coverallsapp/github-action@v2
with:
file: artifacts/lcov.info
file: '${{github.workspace}}/test/*/TestResults/*/coverage.info'
format: lcov

- name: Create Packages
Expand All @@ -93,6 +91,21 @@ jobs:
name: packages
path: '${{env.BUILD_PATH}}'

- name: Install docfx
if: success() && startsWith(github.ref, 'refs/tags/v')
run: dotnet tool update -g docfx

- name: Create Documentation
if: success() && startsWith(github.ref, 'refs/tags/v')
run: docfx docs/docfx.json

- name: Deploy Documentation
if: success() && startsWith(github.ref, 'refs/tags/v')
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_site

deploy:
runs-on: ubuntu-latest
needs: build
Expand Down
29 changes: 0 additions & 29 deletions mkdocs.yml

This file was deleted.

0 comments on commit f5a14d2

Please sign in to comment.