latex/.github/workflows/main.yml

71 lines
2.1 KiB
YAML
Raw Normal View History

name: Deploy
2020-03-28 18:30:36 +01:00
on:
push:
branches:
- master
- github-actions
schedule:
- cron: 0 18 * * *
2020-03-28 18:30:36 +01:00
jobs:
2020-03-28 19:06:24 +01:00
build-infraonly:
2020-03-28 18:30:36 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2020-03-28 18:30:36 +01:00
- name: Login to Dockerhub
run: echo ${{secrets.DOCKERHUB_PASSWORD}} | docker login -u ${{secrets.DOCKERHUB_USER}} --password-stdin
2020-03-28 18:55:08 +01:00
- name: Build infraonly
working-directory: ./ctan
run: docker build -t ${{secrets.DOCKERHUB_USER}}/latex:infraonly -f Dockerfile.infraonly .
2020-03-28 18:38:29 +01:00
- name: Upload infraonly image
run: docker push ${{secrets.DOCKERHUB_USER}}/latex:infraonly
2020-03-28 18:30:36 +01:00
2020-03-28 19:06:24 +01:00
build-incremental:
2020-03-28 18:30:36 +01:00
runs-on: ubuntu-latest
2020-03-28 19:06:24 +01:00
needs: [build-infraonly]
strategy:
max-parallel: 1
matrix:
scheme : [minimal, basic, small, context, gust, medium, tetex, full]
include:
- scheme: minimal
source: infraonly
- scheme: basic
source: minimal
- scheme: small
source: basic
- scheme: context
source: small
- scheme: gust
source: context
- scheme: medium
source: gust
- scheme: tetex
source: medium
- scheme: full
source: tetex
isLatest: true
2020-03-28 18:30:36 +01:00
steps:
- uses: actions/checkout@v2
- name: Login to Dockerhub
run: echo ${{secrets.DOCKERHUB_PASSWORD}} | docker login -u ${{secrets.DOCKERHUB_USER}} --password-stdin
- name: Build ${{matrix.scheme}}
2020-03-28 19:06:24 +01:00
working-directory: ./ctan
run: docker build -t ${{secrets.DOCKERHUB_USER}}/latex:${{matrix.scheme}} --build-arg SOURCE=${{matrix.source}} --build-arg SCHEME=${{matrix.scheme}} .
2020-03-29 03:59:42 +02:00
- name: Upload ${{matrix.scheme}}
run: docker push ${{secrets.DOCKERHUB_USER}}/latex:${{matrix.scheme}}
2020-03-28 19:06:24 +01:00
- name: Tag as latest
if: matrix.isLatest
2020-03-28 20:28:02 +01:00
run: |
docker tag ${{secrets.DOCKERHUB_USER}}/latex:${{matrix.scheme}} ${{secrets.DOCKERHUB_USER}}/latex:latest
2020-03-28 20:28:02 +01:00
docker push ${{secrets.DOCKERHUB_USER}}/latex:latest