Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ma91n committed Dec 25, 2024
1 parent 82789f9 commit d04fe73
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/GHPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: docker://pandoc/latex:3.6
with:
args: |
sh build-resources-with-pandoc.sh
# pandoc/latexのentrypointはpandocコマンドになっているため、usersディレクティブは使用不可
- name: Pull pandoc/latex image
run: docker pull pandoc/latex:3.6
- name: Run pandoc/latex with custom entrypoint
run: |
docker run --entrypoint /bin/ash -v ${{ github.workspace }}:/workspace -w /workspace pandoc/latex:3.6 -c "./build-resources-with-pandoc.sh"
- name: Install Packages
run: |
npm i -f
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/test-build-resources-with-pandoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: docker://pandoc/latex:3.6
with:
args: sh build-resources-with-pandoc.sh
# pandoc/latexのentrypointはpandocコマンドになっているため、usersディレクティブは使用不可
- name: Pull pandoc/latex image
run: docker pull pandoc/latex:3.6
- name: Run pandoc/latex with custom entrypoint
run: |
docker run --entrypoint /bin/ash -v ${{ github.workspace }}:/workspace -w /workspace pandoc/latex:3.6 -c "./build-resources-with-pandoc.sh"
- name: Archive resources
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit d04fe73

Please sign in to comment.