Skip to content

Commit a6ee020

Browse files
committed
feat: use match in place of semver for docker image tags
1 parent 64db5ad commit a6ee020

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/docker-publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
with:
3333
images: ${{ env.IMAGE_NAME }}
3434
tags: |
35-
type=semver,pattern={{version}}
36-
type=semver,pattern={{major}}.{{minor}}
37-
type=semver,pattern={{major}}
35+
type=match,pattern=\d+.\d+.\d+
36+
type=match,pattern=\d+.\d+
37+
type=match,pattern=\d+
3838
3939
- name: Build and push Docker image
4040
id: push

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Docker Mica
22
===========
33

4+
See [Mica docker image documentation](https://micadoc.obiba.org/en/latest/admin/installation.html#docker-image-installation).
5+
6+
47
Use [docker compose](https://docs.docker.com/compose/) to launch agate and mongodb applications:
58

69
```

0 commit comments

Comments
 (0)