ci: update integrate job to ubuntu-latest
#56
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Build Ukrainian language documentation" | |
| on: | |
| push: | |
| branches: "master" | |
| pull_request: | |
| branches: "master" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: "Build" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout php/doc-uk" | |
| uses: "actions/checkout@v4" | |
| with: | |
| path: "uk" | |
| repository: "php/doc-uk" | |
| - name: "Checkout php/doc-en" | |
| uses: "actions/checkout@v4" | |
| with: | |
| path: "en" | |
| repository: "php/doc-en" | |
| - name: "Checkout php/doc-base" | |
| uses: "actions/checkout@v4" | |
| with: | |
| path: "doc-base" | |
| repository: "php/doc-base" | |
| - name: "Build documentation" | |
| run: "php doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=uk" |