Github Actions
Build edge tag on push to main Build dev tag on push to dev Build latest tag on pushing a tag Only react to semVer tags
This commit is contained in:
parent
adc40a9056
commit
f1866a9f2d
1 changed files with 7 additions and 5 deletions
12
.github/workflows/build-image.yaml
vendored
12
.github/workflows/build-image.yaml
vendored
|
@ -8,7 +8,7 @@ on:
|
||||||
- main
|
- main
|
||||||
- dev
|
- dev
|
||||||
tags:
|
tags:
|
||||||
- '[0-9]+.*'
|
- '[0-9]+\.[0-9]+\.[0-9]+'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docker:
|
docker:
|
||||||
|
@ -32,12 +32,14 @@ jobs:
|
||||||
${{ steps.image_name.outputs.image_name }}
|
${{ steps.image_name.outputs.image_name }}
|
||||||
# generate Docker tags based on the following events/attributes
|
# generate Docker tags based on the following events/attributes
|
||||||
tags: |
|
tags: |
|
||||||
# set latest tag for default branch
|
# set edge tag for default branch
|
||||||
type=raw,value=latest,enable={{is_default_branch}}
|
type=edge,enable={{is_default_branch}}
|
||||||
# set edge tag for dev branch
|
# set dev tag for dev branch
|
||||||
type=edge,enable=true,branch=dev
|
type=raw,value=dev,enable=true,branch=dev
|
||||||
# Tags for non SemVer tag names
|
# Tags for non SemVer tag names
|
||||||
type=match,pattern=([0-9]+.*),group=1
|
type=match,pattern=([0-9]+.*),group=1
|
||||||
|
# latest tag for any tags
|
||||||
|
type=raw,value=latest,event=tag
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
Loading…
Reference in a new issue