Skip to content

Commit

Permalink
これにて一旦完成とする
Browse files Browse the repository at this point in the history
  • Loading branch information
huideyeren committed Sep 6, 2024
1 parent 046a6f0 commit 992ac5c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 124 deletions.
169 changes: 45 additions & 124 deletions .github/workflows/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ jobs:
# npx textlint -f checkstyle chapter/*.re wiki/*.md README.md \
# | reviewdog -f=checkstyle -name="textlint" -diff="git diff ${{ github.event.pull_request.base.ref }}" -reporter=github-pr-review -level="error"

epub-tate:
epub:
# needs: reviewdog-github-check
name: EPUB(縦)
name: EPUB版組
runs-on: ubuntu-latest
container:
image: ghcr.io/huideyeren/vivliostyle-review-docker:latest
Expand All @@ -84,22 +84,22 @@ jobs:
- name: Node.jsのパッケージをインストール
run: pnpm install
- name: SCSSのコンパイル
run: pnpm run style:${{ env.SIZE }}-tate-no-bleed
run: pnpm run style:${{ env.SIZE }}-${{ env.MUKI }}-no-bleed
- name: Rubyのパッケージをインストール
run: bundle install
- name: MermaidのPNG化
run: ./mmdtopng.sh images
- name: EPUBの生成
run: REVIEW_CONFIG_FILE=config-epub-tate.yml bundle exec rake epub
run: REVIEW_CONFIG_FILE=config-epub-${{ env.MUKI }}.yml bundle exec rake epub
- name: 成果物のアップロード
uses: actions/upload-artifact@v4
with:
name: ${{ format('inokashira-template_{0}_{1}', 'epub', 'tate', steps.date.outputs.date) }}
name: ${{ format('inokashira-template_{0}_{1}_{2}', 'epub', env.MUKI, steps.date.outputs.date) }}
path: book.epub

epub-yoko:
print-pdf:
# needs: reviewdog-github-check
name: EPUB(横)
name: 塗り足しのある印刷用PDF
runs-on: ubuntu-latest
container:
image: ghcr.io/huideyeren/vivliostyle-review-docker:latest
Expand All @@ -118,22 +118,33 @@ jobs:
- name: Node.jsのパッケージをインストール
run: pnpm install
- name: SCSSのコンパイル
run: pnpm run style:${{ env.SIZE }}-yoko-no-bleed
run: pnpm run style:${{ env.SIZE }}-tate
- name: Rubyのパッケージをインストール
run: bundle install
# - name: Pythonのセットアップ
# uses: actions/setup-python@v5
# with:
# python-version: '3.12'
# - name: 画像の白黒化
# run: |
# python -m pip install --upgrade pip
# python -m pip install anshitsu
# pwd | python grayscaling.py >> .grayscaling.log
# - name: 画像白黒化のログ確認
# run: cat .grayscaling.log
- name: MermaidのPNG化
run: ./mmdtopng.sh images
- name: EPUBの生成
run: REVIEW_CONFIG_FILE=config-epub-yoko.yml bundle exec rake epub
- name: PDFの生成
run: REVIEW_CONFIG_FILE=config-print-tate.yml REVIEW_VSCLI_USESANDBOX=true REVIEW_VSCLI_GRAYSCALE=true bundle exec rake vivliostyle
- name: 成果物のアップロード
uses: actions/upload-artifact@v4
with:
name: ${{ format('inokashira-template_{0}_{1}', 'epub', 'yoko', steps.date.outputs.date) }}
path: book.epub
name: ${{ format('inokashira-template_{0}_{1}_{2}', 'print-pdf', env.MUKI, steps.date.outputs.date) }}
path: book.pdf

print-pdf-tate:
print-pdf-no-bleed:
# needs: reviewdog-github-check
name: 塗り足しのある印刷用PDF
name: 塗り足しのない印刷用PDF
runs-on: ubuntu-latest
container:
image: ghcr.io/huideyeren/vivliostyle-review-docker:latest
Expand All @@ -152,38 +163,37 @@ jobs:
- name: Node.jsのパッケージをインストール
run: pnpm install
- name: SCSSのコンパイル
run: pnpm run style:${{ env.SIZE }}-tate
run: pnpm run style:${{ env.SIZE }}-${{ env.MUKI }}-no-bleed
- name: Rubyのパッケージをインストール
run: bundle install
- name: Pythonのセットアップ
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: 画像の白黒化
run: |
python -m pip install --upgrade pip
python -m pip install anshitsu
pwd | python grayscaling.py >> .grayscaling.log
- name: 画像白黒化のログ確認
run: cat .grayscaling.log
# - name: Pythonのセットアップ
# uses: actions/setup-python@v5
# with:
# python-version: '3.12'
# - name: 画像の白黒化
# run: |
# python -m pip install --upgrade pip
# python -m pip install anshitsu
# pwd | python grayscaling.py >> .grayscaling.log
# - name: 画像白黒化のログ確認
# run: cat .grayscaling.log
- name: MermaidのPNG化
run: ./mmdtopng.sh images
- name: PDFの生成
run: REVIEW_CONFIG_FILE=config-print-tate.yml REVIEW_VSCLI_USESANDBOX=true REVIEW_VSCLI_GRAYSCALE=true bundle exec rake vivliostyle
run: REVIEW_CONFIG_FILE=config-print-${{ env.MUKI }}.yml EVIEW_VSCLI_USESANDBOX=true REVIEW_VSCLI_GRAYSCALE=true bundle exec rake vivliostyle
- name: 成果物のアップロード
uses: actions/upload-artifact@v4
with:
name: ${{ format('inokashira-template_{0}_{1}', 'print-pdf', 'tate', steps.date.outputs.date) }}
name: ${{ format('inokashira-template_{0}_{1}', 'print-pdf-no-bleed', env.MUKI, steps.date.outputs.date) }}
path: book.pdf

print-pdf-yoko:
ebook-pdf:
# needs: reviewdog-github-check
name: 塗り足しのある印刷用PDF
name: 電子書籍用PDF
runs-on: ubuntu-latest
container:
image: ghcr.io/huideyeren/vivliostyle-review-docker:latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: リポジトリのチェックアウト
uses: actions/checkout@v4
- name: 現在時刻を取得
Expand All @@ -197,108 +207,19 @@ jobs:
- name: Node.jsのパッケージをインストール
run: pnpm install
- name: SCSSのコンパイル
run: pnpm run style:${{ env.SIZE }}-yoko
run: pnpm run style:${{ env.SIZE }}-${{ env.MUKI }}-no-bleed
- name: Rubyのパッケージをインストール
run: bundle install
- name: Pythonのセットアップ
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: 画像の白黒化
run: |
python -m pip install --upgrade pip
python -m pip install anshitsu
pwd | python grayscaling.py >> .grayscaling.log
- name: 画像白黒化のログ確認
run: cat .grayscaling.log
- name: MermaidのPNG化
run: ./mmdtopng.sh images
- name: PDFの生成
run: REVIEW_CONFIG_FILE=config-print-yoko.yml REVIEW_VSCLI_USESANDBOX=true REVIEW_VSCLI_GRAYSCALE=true bundle exec rake vivliostyle
run: REVIEW_CONFIG_FILE=config-ebook-${{ env.MUKI }}.yml REVIEW_VSCLI_USESANDBOX=true bundle exec rake vivliostyle
- name: 成果物のアップロード
uses: actions/upload-artifact@v4
with:
name: ${{ format('inokashira-template_{0}_{1}', 'print-pdf', 'yoko', steps.date.outputs.date) }}
name: ${{ format('inokashira-template_{0}_{1}_{2}', 'print-pdf', env.MUKI, steps.date.outputs.date) }}
path: book.pdf

# print-pdf-no-bleed:
# # needs: reviewdog-github-check
# name: 塗り足しのない印刷用PDF
# runs-on: ubuntu-latest
# container:
# image: ghcr.io/huideyeren/vivliostyle-review-docker:latest
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - 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: Pythonのセットアップ
# uses: actions/setup-python@v5
# with:
# python-version: '3.12'
# - name: 画像の白黒化
# run: |
# python -m pip install --upgrade pip
# python -m pip install anshitsu
# pwd | python grayscaling.py >> .grayscaling.log
# - name: 画像白黒化のログ確認
# run: cat .grayscaling.log
# - name: MermaidのPNG化
# run: ./mmdtopng.sh images
# - name: PDFの生成
# run: REVIEW_CONFIG_FILE=config-print-${{ env.MUKI }}.yml EVIEW_VSCLI_USESANDBOX=true REVIEW_VSCLI_GRAYSCALE=true bundle exec rake vivliostyle
# - name: 成果物のアップロード
# uses: actions/upload-artifact@v4
# with:
# name: ${{ format('inokashira-template_{0}_{1}', 'print-pdf-no-bleed', env.MUKI, steps.date.outputs.date) }}
# path: book.pdf

# ebook-pdf:
# # needs: reviewdog-github-check
# name: 電子書籍用PDF
# 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: MermaidのPNG化
# run: ./mmdtopng.sh images
# - name: PDFの生成
# run: REVIEW_CONFIG_FILE=config-ebook-${{ env.MUKI }}.yml REVIEW_VSCLI_USESANDBOX=true bundle exec rake vivliostyle
# - name: 成果物のアップロード
# uses: actions/upload-artifact@v4
# with:
# name: ${{ format('inokashira-template_{0}_{1}', 'ebook-pdf', steps.date.outputs.date) }}
# path: book.pdf

# paper:
# # 校正ツールによるチェックが通らないとダメにするにはチェックを外す
# # needs: reviewdog-github-check
Expand Down Expand Up @@ -348,6 +269,6 @@ jobs:
# - name: 成果物のアップロード
# uses: actions/upload-artifact@v4
# with:
# name: ${{ format('inokashira-template_{0}_{1}', 'uplatex-pdf', steps.date.outputs.date) }}
# name: ${{ format('inokashira-template_{0}_{1}_{2}', 'print-pdf', env.MUKI, steps.date.outputs.date) }}
# path: book.pdf

Binary file removed images/shikumi.png
Binary file not shown.

0 comments on commit 992ac5c

Please sign in to comment.