Skip to content

Fix docker re:view version #105

Fix docker re:view version

Fix docker re:view version #105

Workflow file for this run

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