build tag
This commit is contained in:
parent
91d65e9b9f
commit
40d1226fdb
1 changed files with 7 additions and 3 deletions
|
|
@ -3,8 +3,8 @@ name: Build & Deploy on Dev
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
tags:
|
||||||
- dev
|
- "v[0-9]+.[0-9]+.[0-9]+"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -30,7 +30,11 @@ jobs:
|
||||||
ca=["/etc/ssl/certs/ca-certificates.crt"]
|
ca=["/etc/ssl/certs/ca-certificates.crt"]
|
||||||
- name: Tag Version
|
- name: Tag Version
|
||||||
run: |
|
run: |
|
||||||
echo "IMAGE_VERSION=latest"
|
if [ "${{ github.ref_type }}" == "tag" ]; then
|
||||||
|
echo "IMAGE_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "IMAGE_VERSION=latest" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
- name: Login in to registry
|
- name: Login in to registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue