-
Notifications
You must be signed in to change notification settings - Fork 3
53 lines (46 loc) · 1.49 KB
/
pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: pull_request
on:
pull_request:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
# Build a fresh container for the PR.
build-container:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
# Build and push Docker image as "pandoc_test"
# Only amd64, since we're just building a container
# to be used below in the GH action runner.
- name: Build and publish Docker image
uses: docker/build-push-action@v5
with:
# Cache layers from the container repo.
# This minimizes the amount of times we have to rebuild pandoc.
# Read-only: Avoid cluttering up the cache on pull requests.
cache-from: type=gha
platforms: linux/amd64
push: true
tags: ghcr.io/trustedcomputinggroup/pandoc_test
# Use the fresh container to render the samples.
render-samples:
needs: build-container
uses: ./.github/workflows/render.yml
with:
container: ghcr.io/trustedcomputinggroup/pandoc_test
container-version: latest
input: guide.tcg
workflow: pr