chore(deps): update alpine:3.20.3 docker digest to 1e42bbe #213
Workflow file for this run
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 PR | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-alpine: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Build Docker image | |
uses: ./.github/actions/build/ | |
with: | |
context: ./alpine/ | |
load: true | |
tags: | | |
paperist/texlive-ja:alpine | |
- name: Test | |
run: | | |
docker run --rm -v ${PWD}/tests:/workdir paperist/texlive-ja:alpine \ | |
sh -c 'latexmk -C main.tex && latexmk main.tex && latexmk -c main.tex'; | |
- name: Upload result | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: alpine | |
path: ./tests/main.pdf | |
build-debian: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Build Docker image | |
uses: ./.github/actions/build/ | |
with: | |
context: ./debian/ | |
load: true | |
tags: | | |
paperist/texlive-ja:debian | |
- name: Test | |
run: | | |
docker run --rm -v ${PWD}/tests:/workdir paperist/texlive-ja:debian \ | |
sh -c 'latexmk -C main.tex && latexmk main.tex && latexmk -c main.tex'; | |
- name: Upload result | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: debian | |
path: ./tests/main.pdf | |
build-debian-arm64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Build Docker image | |
uses: ./.github/actions/build/ | |
with: | |
context: ./debian/ | |
platforms: linux/arm64 |