Skip to content

Commit

Permalink
Fix styles (#209)
Browse files Browse the repository at this point in the history
* fix styles

* fix version

* Update update-gh-pages-branch.yml

* matomo option metadata
  • Loading branch information
natakazakova authored Aug 6, 2024
1 parent dc17a8b commit d361888
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-eud-on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
run: git status

- name: Download docfx
run: curl https://github.com/dotnet/docfx/releases/download/v2.59.2/docfx.zip -L -o ../docfx.zip
run: curl https://github.com/dotnet/docfx/releases/download/v2.77.0/docfx-win-x64-v2.77.0.zip -L -o ../docfx-win-x64-v2.77.0.zip

- name: Expand docfx
run: Expand-Archive ../docfx.zip -DestinationPath ../docfx
run: Expand-Archive ../docfx-win-x64-v2.77.0.zip -DestinationPath ../docfx

- name: Build site with docfx
run: ../docfx/docfx.exe build docfx.json --warningsAsErrors
6 changes: 3 additions & 3 deletions .github/workflows/update-gh-pages-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
run: git status

- name: Download docfx
run: curl https://github.com/dotnet/docfx/releases/download/v2.59.2/docfx.zip -L -o ../docfx.zip
run: curl https://github.com/dotnet/docfx/releases/download/v2.77.0/docfx-win-x64-v2.77.0.zip -L -o ../docfx-win-x64-v2.77.0.zip

- name: Expand docfx
run: Expand-Archive ../docfx.zip -DestinationPath ../docfx
run: Expand-Archive ../docfx-win-x64-v2.77.0.zip -DestinationPath ../docfx

- name: Build site with docfx
run: "../docfx/docfx.exe build docfx.json --globalMetadata \"{ '_matomoContainerUrl': 'https://matomo.devexpress.com/js/container_kE7MWPi0.js' }\" --warningsAsErrors"
run: "../docfx/docfx.exe build docfx.json --metadata \"{ '_matomoContainerUrl': 'https://matomo.devexpress.com/js/container_kE7MWPi0.js' }\" --warningsAsErrors"

- name: Archive site
run: Compress-Archive -Path _site/* -DestinationPath ${{ runner.temp }}/site.zip
Expand Down
2 changes: 1 addition & 1 deletion .template/partials/head.tmpl.partial
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<meta name="generator" content="docfx {{_docfxVersion}}">
{{#_description}}<meta name="description" content="{{_description}}">{{/_description}}
<link rel="shortcut icon" href="{{_rel}}{{{_appFaviconPath}}}{{^_appFaviconPath}}favicon.ico{{/_appFaviconPath}}">
<link rel="stylesheet" href="{{_rel}}styles/docfx.vendor.css">
<link rel="stylesheet" href="{{_rel}}styles/docfx.vendor.min.css">
<link rel="stylesheet" href="{{_rel}}styles/docfx.css">
<link rel="stylesheet" href="{{_rel}}styles/main.css">
<meta property="docfx:navrel" content="{{_navRel}}">
Expand Down

0 comments on commit d361888

Please sign in to comment.