add: install latest chrome #73
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: Push Image | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
push_image: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
target: ["pandoc", "printout"] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: create tag | |
run: | | |
SHA=${{ github.sha }} | |
TAG=$(TZ=UTC-9 date '+%Y%m')-${SHA:0:7} | |
echo "TAGS=$TAG" >> $GITHUB_ENV | |
echo TAG $TAG | |
- name: Cache Docker layers | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ github.ref }}-${{ github.sha }} | |
restore-keys: | | |
${{ github.ref }}-${{ github.sha }} | |
${{ github.ref }} | |
refs/head/master | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./${{ matrix.target }} | |
push: true | |
tags: | | |
ghcr.io/${{ github.repository_owner }}/${{ matrix.target }}:latest | |
cache-from: type=local,src=/tmp/${{ matrix.target }}/.buildx-cache | |
cache-to: type=local,dest=/tmp/${{ matrix.target }}/.buildx-cache | |
test: | |
needs: push_image | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set DATE | |
run: echo "DATE=$(date '+%Y%m%d-%H%M%S')" >> $GITHUB_ENV | |
- name: chackout | |
uses: actions/checkout@v2 | |
- name: Convert file markdown to pdf | |
run: | | |
make setup | |
make test_base | |
make CTN1=ghcr.io/i13302/pandoc:latest CTN2=ghcr.io/i13302/printout:latest test_run | |
make test_check | |
- name: Upload file pdf. | |
uses: actions/upload-artifact@master | |
with: | |
name: PDFTEST-${{ env.DATE }} | |
path: test/pdf/*.pdf |