Skip to content

Commit

Permalink
Reorder and more simetric names
Browse files Browse the repository at this point in the history
  • Loading branch information
André L F S Bacci committed Jan 30, 2025
1 parent 20a517a commit 7458d5c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,33 +34,33 @@ jobs:
- "zh"

steps:
- name: "Checkout"
- name: "Checkou doc-baset"
uses: "actions/checkout@v4"
with:
path: "doc-base"
fetch-depth: 0

- name: "Checkout php/doc-${{ matrix.language }}"
- name: "Checkout doc-${{ matrix.language }}"
uses: "actions/checkout@v4"
with:
path: "${{ matrix.language }}"
repository: "php/doc-${{ matrix.language }}"

- name: "Checkout php/doc-en as fallback"
- name: "Checkout doc-en (fallback)"
if: "matrix.language != 'en'"
uses: "actions/checkout@v4"
with:
path: "en"
repository: "php/doc-en"

- name: "Merge doc-base with master (concurrent PRs)"
run: "git -C doc-base merge --no-ff --no-commit origin/master"

- name: "Run QA scripts for EN docs"
if: "matrix.language == 'en'"
run: |
php doc-base/scripts/qa/extensions.xml.php --check
php doc-base/scripts/qa/section-order.php
- name: "Merge with master (to care for concurrent PRs)"
run: "git -C doc-base merge --no-ff --no-commit origin/master"

- name: "Build documentation for ${{ matrix.language }}"
run: "php doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}"

0 comments on commit 7458d5c

Please sign in to comment.