Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 22 additions & 0 deletions .github/workflows/build-eud-docctor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build EUD with doc.ctor

on:
workflow_dispatch:

jobs:
eud-build:
runs-on: ubuntu-latest
steps:
- name: Trigger internal workflow via GitHub API
run: |
curl -X POST \
-H "Authorization: token ${{ secrets.DOCCTOR_ACTIONS_API_TOKEN }}" \
-H "Accept: application/vnd.github+json" \
https://api.github.com/repos/DevExpress/doc.ctor-actions/actions/workflows/eud.yml/dispatches \
-d '{
"ref":"main",
"inputs": {
"source_branch": "${{ github.ref_name}}",
"content_stamp": "${{ github.sha }}"
}
}'
46 changes: 23 additions & 23 deletions .github/workflows/build-eud-on-pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
name: build eud on pull request

on:
pull_request:

jobs:
build-site:
runs-on: windows-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4

- name: Check status
run: git status

- name: Download docfx
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-win-x64-v2.77.0.zip -DestinationPath ../docfx

- name: Build site with docfx
run: ../docfx/docfx.exe build docfx.json -m _matomoContainerUrl="https://matomo.devexpress.com/js/container_kE7MWPi0.js" --warningsAsErrors
name: build eud on pull request
on:
pull_request:
jobs:
build-site:
runs-on: windows-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Check status
run: git status
- name: Download docfx
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-win-x64-v2.77.0.zip -DestinationPath ../docfx
- name: Build site with docfx
run: ../docfx/docfx.exe build docfx.json -m _matomoContainerUrl="https://matomo.devexpress.com/js/container_kE7MWPi0.js" --warningsAsErrors
6 changes: 3 additions & 3 deletions docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"content": [
{
"files": [
"eud-for-bi-dashboards/**/*.{md,yml}",
"eud-for-bi-dashboard/**/*.{md,yml}",
"eud-for-devexpress-reports/**/*.{md,yml}",
"toc.yml",
"index.md"
Expand All @@ -18,9 +18,9 @@
"files": [
"favicon.ico",
"logo.svg",
"eud-for-bi-dashboards/dashboard-for-web/images/**",
"eud-for-bi-dashboard/dashboard-for-web/images/**",
"eud-for-devexpress-reports/reporting-for-web/images/**",
"eud-for-bi-dashboards/dashboard-for-desktop/images/**",
"eud-for-bi-dashboard/dashboard-for-desktop/images/**",
"eud-for-devexpress-reports/reporting-for-desktop/images/**"
],
"exclude": [
Expand Down
Loading