fix build version
All checks were successful
Build & Deploy on Dev / build (push) Successful in 4m23s

This commit is contained in:
Warunee Tamkoo 2026-04-20 21:15:06 +07:00
parent 84f86adc39
commit 97348f2ecd

View file

@ -4,8 +4,8 @@ name: Build & Deploy on Dev
on: on:
push: push:
tags: tags:
- "v[0-9]+.[0-9]+.[0-9]+" - 'v[0-9]+.[0-9]+.[0-9]+'
- "v[0-9]+.[0-9]+.[0-9]+*" # - 'version-[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch: workflow_dispatch:
env: env:
@ -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:
@ -54,7 +58,7 @@ jobs:
password: ${{ secrets.SSH_DEPLOY_PASSWORD }} password: ${{ secrets.SSH_DEPLOY_PASSWORD }}
script: | script: |
cd ~/repo cd ~/repo
./replace-env.sh APP_ADMIN "${{ env.IMAGE_VERSION }}" ./replace-env.sh APP_CHECKIN "${{ env.IMAGE_VERSION }}"
./deploy.sh hrms-admin ./deploy.sh hrms-admin
- name: Discord Notification - name: Discord Notification