-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (64 loc) · 2.08 KB
/
build-linux-image.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: linux/amd64
on:
push:
branches: [ main ]
paths:
- '**'
- '!README.md'
- '!LICENSE'
- '!.github/workflows/update-dockerhub.yml'
- '!.github/dependabot.yml'
pull_request:
branches: [ main ]
paths:
- '**'
- '!README.md'
- '!LICENSE'
- '!.github/workflows/update-dockerhub.yml'
- '!.github/dependabot.yml'
schedule:
- cron: '0 0 * * MON'
repository_dispatch: # Allows action to be triggered via webhook
workflow_dispatch: # Allows action to be run manually from the Actions tab
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build Linux Image
uses: docker/build-push-action@v4.0.0
with:
context: .
file: ./linux.Dockerfile
tags: |
lan2play/docker-sphinxbuild:latest
build-args: |
BUILDNODE=GitHub (Run Number: ${{ github.run_number }} Run ID: ${{ github.run_id }})
SOURCE_COMMIT=${{ github.sha }}
no-cache: true
- name: Build latexpdf Linux Image
uses: docker/build-push-action@v4.0.0
with:
context: .
file: ./linux.latexpdf.Dockerfile
tags: |
lan2play/docker-sphinxbuild:latexpdf
build-args: |
BUILDNODE=GitHub (Run Number: ${{ github.run_number }} Run ID: ${{ github.run_id }})
SOURCE_COMMIT=${{ github.sha }}
no-cache: true
- name: Login to DockerHub
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v2.2.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push latest to Docker HUB
if: ${{ github.event_name != 'pull_request' }}
run: docker push lan2play/docker-sphinxbuild:latest
- name: Push latexpdf to Docker HUB
if: ${{ github.event_name != 'pull_request' }}
run: docker push lan2play/docker-sphinxbuild:latexpdf