DONE: cicd pipeline for customer fe
This commit is contained in:
@@ -129,7 +129,47 @@ jobs:
|
||||
--push \
|
||||
fe/web/teller-app
|
||||
|
||||
# --- Customer (Next.js) — enable when ready ---
|
||||
# build-customer:
|
||||
# runs-on: docker
|
||||
# ...
|
||||
build-customer:
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Docker registry
|
||||
run: |
|
||||
echo "${{ secrets.REGISTRY_PASSWORD }}" | \
|
||||
docker login git.koppkb.com \
|
||||
-u "${{ secrets.REGISTRY_USERNAME }}" \
|
||||
--password-stdin
|
||||
|
||||
- name: Build & push customer frontend image
|
||||
run: |
|
||||
set -e
|
||||
|
||||
IMAGE="git.koppkb.com/kopkb/qms-fe-customer"
|
||||
TAGS="-t ${IMAGE}:${{ gitea.sha }}"
|
||||
API_URL="${{ secrets.NEXT_PUBLIC_API_URL }}"
|
||||
if [ -z "${API_URL}" ]; then
|
||||
API_URL="${{ secrets.VITE_API_URL }}"
|
||||
fi
|
||||
|
||||
if [ -z "${API_URL}" ]; then
|
||||
echo "ERROR: Set Gitea secret NEXT_PUBLIC_API_URL or VITE_API_URL (e.g. http://YOUR_SERVER_IP:8080)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "${{ gitea.ref_type }}" = "tag" ] && echo "${{ gitea.ref_name }}" | grep -q '^v'; then
|
||||
TAGS="${TAGS} -t ${IMAGE}:${{ gitea.ref_name }}"
|
||||
fi
|
||||
|
||||
echo "Building and pushing customer: ${TAGS}"
|
||||
docker buildx build \
|
||||
--platform linux/amd64 \
|
||||
--build-arg NEXT_PUBLIC_API_URL="${API_URL}" \
|
||||
--cache-from type=registry,ref=${IMAGE}:buildcache,ignore-error=true \
|
||||
--cache-to type=registry,ref=${IMAGE}:buildcache,mode=max \
|
||||
-f fe/web/customer-app/Dockerfile \
|
||||
${TAGS} \
|
||||
--push \
|
||||
fe/web/customer-app
|
||||
|
||||
Reference in New Issue
Block a user