-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (49 loc) · 1.78 KB
/
pytools-docker.yaml
File metadata and controls
55 lines (49 loc) · 1.78 KB
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
name: Build and publish python tools Docker image
on:
workflow_dispatch:
inputs:
pytools_tag:
description: 'Python tools tagged version'
required: true
tilematrixsets_tag:
description: 'Tile matrix sets tagged version'
required: true
default: '4.4'
styles_tag:
description: 'Styles tagged version'
required: true
default: '4.6'
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/pytools/
push: true
file: build/pytools/debian11.Dockerfile
tags: |
rok4/pytools:${{ github.event.inputs.pytools_tag }}
build-args: |
ROK4TILEMATRIXSETS_VERSION=${{ github.event.inputs.tilematrixsets_tag }}
ROK4STYLES_VERSION=${{ github.event.inputs.styles_tag }}
ROK4PYTOOLS_VERSION=${{ github.event.inputs.pytools_tag }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: rok4/pytools
short-description: 'Outils python du projet ROK4 : calcul de pyramide, conversions, calcul de statistiques...'
readme-filepath: build/pytools/README.md