-
Notifications
You must be signed in to change notification settings - Fork 3
74 lines (68 loc) · 2.56 KB
/
fullgeneration-docker.yaml
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
70
71
72
73
74
name: Build and publish full generation Docker image
on:
workflow_dispatch:
inputs:
output_image_tag:
description: 'Output docker image tag'
required: true
corecpp_tag:
description: 'C++ library version'
required: true
generation_tag:
description: 'Generation tools tagged version'
required: true
tools_tag:
description: 'Managment tools tagged version'
required: true
pregeneration_tag:
description: 'Pregeneration tools tagged version'
required: true
coreperl_tag:
description: 'Perl libraries tagged version'
required: true
tilematrixsets_tag:
description: 'Tile matrix sets tagged version'
required: true
default: '4.2'
styles_tag:
description: 'Styles tagged version'
required: true
default: '4.1'
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: build/fullgeneration/
push: true
file: build/fullgeneration/debian11.Dockerfile
tags: |
rok4/fullgeneration:${{ github.event.inputs.output_image_tag }}
build-args: |
ROK4TILEMATRIXSETS_VERSION=${{ github.event.inputs.tilematrixsets_tag }}
ROK4COREPERL_VERSION=${{ github.event.inputs.coreperl_tag }}
ROK4PREGENERATION_VERSION=${{ github.event.inputs.pregeneration_tag }}
ROK4STYLES_VERSION=${{ github.event.inputs.styles_tag }}
ROK4GENERATION_VERSION=${{ github.event.inputs.generation_tag }}
ROK4TOOLS_VERSION=${{ github.event.inputs.tools_tag }}
ROK4CORECPP_VERSION=${{ github.event.inputs.corecpp_tag }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: rok4/fullgeneration
short-description: 'Suites de prégénération, génération et gestion du projet ROK4'
readme-filepath: build/fullgeneration/README.md