22 lines
586 B
YAML
22 lines
586 B
YAML
name: Frontend CI/CD v2
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
build-test-publish-and-deploy:
|
|
uses: OrgTJWater/ci-templates/.gitea/workflows/container-cd.yml@main
|
|
with:
|
|
image_name: gitea.waternetwork.cn/orgtjwater/tjwaterfrontend_refine
|
|
dockerfile: Dockerfile
|
|
build_context: .
|
|
deploy_service: frontend
|
|
deploy_host: 192.168.1.114
|
|
secrets:
|
|
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
|
|
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
|
|
DEV_DEPLOY_SSH_KEY: ${{ secrets.DEV_DEPLOY_SSH_KEY }}
|