Fix docker re:view version #105
Workflow file for this run
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 Re:VIEW to make distribution file | |
| # The workflow is triggered on pushes to the repository. | |
| on: [push] | |
| jobs: | |
| build: | |
| name: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # uses v2 Stable version | |
| # https://github.com/actions/checkout | |
| - name: checkout source | |
| uses: actions/checkout@v4 | |
| # Build Artifacts | |
| - name: Build Japanese distribution file | |
| run: ./build-in-docker-epub.sh | |
| # Upload Distribution file | |
| - name: Upload distribution file to github artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Output documents (Japanese) | |
| path: ./articles/*.pdf | |
| # Build English artifacts | |
| - name: Build English distribution file | |
| run: ./build-in-docker-epub.sh | |
| env: | |
| REVIEW_LANG: en | |
| # Upload English distribution file | |
| - name: Upload English distribution file to github artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Output documents (English) | |
| path: ./articles/*.pdf |