-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (51 loc) · 1.89 KB
/
build-push-on-tag.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
name: Build container image on microservice release
on:
push:
tags:
- 'chromosome@v[0-9]+.[0-9]+.[0-9]+'
- 'chromosome_region@v[0-9]+.[0-9]+.[0-9]+'
- 'chromosome_search@v[0-9]+.[0-9]+.[0-9]+'
- 'gene_search@v[0-9]+.[0-9]+.[0-9]+'
- 'genes@v[0-9]+.[0-9]+.[0-9]+'
- 'macro_synteny_blocks@v[0-9]+.[0-9]+.[0-9]+'
- 'micro_synteny_search@v[0-9]+.[0-9]+.[0-9]+'
- 'pairwise_macro_synteny_blocks@v[0-9]+.[0-9]+.[0-9]+'
- 'redis_loader@v[0-9]+.[0-9]+.[0-9]+'
- 'search@v[0-9]+.[0-9]+.[0-9]+'
- 'linkouts@v[0-9]+.[0-9]+.[0-9]+'
env:
REGISTRY: ghcr.io
jobs:
build-and-push-image:
name: 'Microservice Docker image build and push'
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Log in to the GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Parse tag & set IMAGE_NAME and TAG environment variables
run: |
MICROSERVICE=${GITHUB_REF##*/}
MICROSERVICE=${MICROSERVICE%@*}
echo "MICROSERVICE=${MICROSERVICE}" >> $GITHUB_ENV
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/microservices-${{ env.MICROSERVICE }}
tags: |
type=match,pattern=[^@]+@v(\d+),group=1
type=match,pattern=[^@]+@v(\d+\.\d+),group=1
type=match,pattern=[^@]+@v(.*),group=1
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: ./${{ env.MICROSERVICE }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}