Skip to content

Commit

Permalink
UdonBook用設定を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
huideyeren committed Nov 5, 2024
1 parent a0cb70d commit 14c781c
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,41 @@ jobs:
name: ${{ format('inokashira-mythos_{0}_{1}_{2}', 'ebook-pdf', env.MUKI, steps.date.outputs.date) }}
path: book.pdf

udonbook:
# needs: reviewdog-github-check
name: UDON Book用画像
runs-on: ubuntu-latest
container:
image: ghcr.io/huideyeren/vivliostyle-review-docker:latest
steps:
- name: リポジトリのチェックアウト
uses: actions/checkout@v4
- name: 現在時刻を取得
env:
TZ: "Asia/Tokyo" # タイムゾーンを指定
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d_%H%M')"
# '%Y-%m-%d %H:%M'の部分を書き換えれば、任意の表示に変更できる。
- name: 現在時刻を確認
run: echo ${{ steps.date.outputs.date }} # 2022-01-03 10:42
- name: Node.jsのパッケージをインストール
run: pnpm install
- name: SCSSのコンパイル
run: pnpm run style:${{ env.SIZE }}-${{ env.MUKI }}-no-bleed
- name: Rubyのパッケージをインストール
run: bundle install
- name: Playwrightのインストール
run: ./node_modules/.bin/playwright install --with-deps
- name: PDFの生成
run: REVIEW_CONFIG_FILE=config-udonbook-${{ env.MUKI }}.yml REVIEW_VSCLI_USESANDBOX=true REVIEW_VSCLI_OPTIONS="--timeout 900" bundle exec rake vivliostyle
- name: 画像の生成
run: mkdir distimages && cp book.pdf images/frontcover.png images/backcover.png ./distimages && cd ./distimages && pdftoppm -png book.pdf dist -scale-to-x 726 -scale-to-y 1024 && cd .. && ls -la ./distimages
- name: 成果物のアップロード
uses: actions/upload-artifact@v4
with:
name: ${{ format('inokashira-template_{0}_{1}_{2}', 'udonbook-png', env.MUKI, steps.date.outputs.date) }}
path: ./distimages/*.png

# paper:
# # 校正ツールによるチェックが通らないとダメにするにはチェックを外す
# # needs: reviewdog-github-check
Expand Down

0 comments on commit 14c781c

Please sign in to comment.