Skip to content

chore(deps): update actions/upload-artifact action to v4.4.3 #210

chore(deps): update actions/upload-artifact action to v4.4.3

chore(deps): update actions/upload-artifact action to v4.4.3 #210

Workflow file for this run

name: Build PR
on:
pull_request:
branches:
- main
jobs:
build-alpine:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Build Docker image
uses: ./.github/actions/build/
with:
context: ./debian/
platforms: linux/arm64