Skip to content
Closed
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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
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

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading