Merge pull request #34 from kmc-jp/issues #72
This file contains 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 bushi | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: build pdf | |
run: make docker BUILD_IMAGE_TAG=1.3.0-makefile | |
- name: save log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: log | |
path: out/*.log | |
- name: save artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bushi.pdf | |
path: out/bushi.pdf | |
if-no-files-found: error |