diff --git a/.github/workflows/local-build.yaml b/.github/workflows/local-build.yaml new file mode 100644 index 0000000..b837b91 --- /dev/null +++ b/.github/workflows/local-build.yaml @@ -0,0 +1,54 @@ + +name: local-build +run-name: local-build ${{ github.actor }} +on: + # push: + # tags: + # - v1.** + # branches: + # - 'main' + # branches: + # - 'release-*' + + # Allow run workflow manually from Action tab + workflow_dispatch: + inputs: + IMAGE_VER: + description: "version for build image" + type: string + +env: + REGISTRY: docker.frappet.com + IMAGE_NAME: edm/core + +jobs: + # act workflow_dispatch --reuse -W .github/workflows/local-build.yaml --input IMAGE_VER=v0.2.4-dev + local-image: + runs-on: ubuntu-latest + steps: + - name: Check out code # checkout only cms is possible but I checkout all + uses: actions/checkout@v3 + - name: Gen Version + id: gen_ver + run: | + IMAGE_VER=${{ github.event.inputs.IMAGE_VER }} + echo "{\"version\":\"$IMAGE_VER\", \"builddate\":\"$(date +"%Y-%m-%d_%T")\",\"ref_name\":\"$GITHUB_REF\" }" > ./Services/server/src/ver.json + cat ./Services/server/src/ver.json + echo '::set-output name=image_ver::'$IMAGE_VER + - name: Debug act + if: ${{ env.ACT }} + run: | + echo $GITHUB_REF + echo ${{ steps.gen_ver.outputs.image_ver }} + cat ./Services/server/src/ver.json + + - name: Build docker image + uses: docker/build-push-action@v4 + with: + context: ./Services/server + load: true + # cache-from: type=gha + # cache-to: type=gha,mode=max + # cache-from: type=local,src=/tmp/.buildx-cache + # cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + tags: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}:${{ steps.gen_ver.outputs.image_ver }},${{env.REGISTRY}}/${{env.IMAGE_NAME}}:latest diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..a06c521 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,89 @@ +name: release +run-name: release ${{ github.actor }} +on: + # push: + # tags: + # - 'v[0-9]+.[0-9]+.[0-9]+' + # tags-ignore: + # - '2.*' + # Allow run workflow manually from Action tab + workflow_dispatch: + inputs: + IMAGE_VER: + description: "version for build image" + type: string +env: + REGISTRY: docker.frappet.com + IMAGE_NAME: edm/core + DEPLOY_HOST: frappet.com + COMPOSE_PATH: /home/chamomind/docker/edm +jobs: + # act workflow_dispatch --reuse -W .github/workflows/release.yaml --input IMAGE_VER=v0.2.4-dev -s DOCKER_USER=robot\$edm+edm -s DOCKER_PASS=jJCfpfU7jfJrvb5BRbVr6Z9HbWNQWR69 -s SSH_KEY="$(< ~/.ssh/chamomind-ehr)" + # act --reuse --workflows .github/workflows/release.yaml --job release --input IMAGE_VER=v0.2.4-dev -s DOCKER_USER=robot\$edm+edm -s DOCKER_PASS=jJCfpfU7jfJrvb5BRbVr6Z9HbWNQWR69 -s SSH_KEY="$(< ~/.ssh/chamomind-ehr)" + release: + runs-on: ubuntu-latest + steps: + - name: Check out code # checkout only cms is possible but I checkout all + uses: actions/checkout@v3 + - name: Gen Version + id: gen_ver + run: | + if [[ $GITHUB_REF == 'refs/tags/'* ]]; then + IMAGE_VER='${GITHUB_REF/refs\/tags\//}' + else + IMAGE_VER=${{ github.event.inputs.IMAGE_VER }} + fi + if [[ $IMAGE_VER == '' ]]; then + IMAGE_VER='beta' + fi + echo "{\"version\":\"$IMAGE_VER\", \"builddate\":\"$(date +"%Y-%m-%d_%T")\",\"ref_name\":\"$GITHUB_REF\" }" > ./Services/server/src/ver.json + cat ./Services/server/src/ver.json + echo '::set-output name=image_ver::'$IMAGE_VER + - name: Debug act + if: ${{ env.ACT }} + run: | + echo $GITHUB_REF + echo ${{ steps.gen_ver.outputs.image_ver }} + cat ./Services/server/src/ver.json + echo ${{secrets.DOCKER_USER}} + echo ${{secrets.DOCKER_PASS}} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login in to registry + uses: docker/login-action@v2 + with: + registry: ${{env.REGISTRY}} + username: ${{secrets.DOCKER_USER}} + password: ${{secrets.DOCKER_PASS}} + - name: Build and push docker image + uses: docker/build-push-action@v3 + with: + context: ./Services/server + platforms: linux/amd64 + push: true + tags: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}:${{ steps.gen_ver.outputs.image_ver }},${{env.REGISTRY}}/${{env.IMAGE_NAME}}:latest + # this stop solve mysterious build fail next stop ?! + - name: Debug act + if: ${{ env.ACT }} + run: | + echo $GITHUB_REF + echo ${{ steps.gen_ver.outputs.image_ver }} + cat ./Services/server/src/ver.json + echo ${{secrets.DOCKER_USER}} + echo ${{secrets.DOCKER_PASS}} + + - name: Remote Deployment + uses: appleboy/ssh-action@v1.0.0 + # uses: appleboy/ssh-action@v0.1.8 + with: + host: ${{env.DEPLOY_HOST}} + username: chamomind + key: ${{ secrets.SSH_KEY }} + port: 10100 + script: | + cd "${{env.COMPOSE_PATH}}" + docker-compose pull + docker-compose up -d + echo "${{ steps.gen_ver.outputs.image_ver }}"> success + + diff --git a/Services/server/Dockerfile b/Services/server/Dockerfile index 1406416..47597bb 100644 --- a/Services/server/Dockerfile +++ b/Services/server/Dockerfile @@ -1,4 +1,5 @@ -FROM node:18-alpine as base +# docker build -t docker.frappet.com/edm/core . +FROM node:20-slim AS base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" @@ -10,7 +11,8 @@ WORKDIR /app COPY . . FROM base AS deps -RUN npm install +RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile +# RUN npm install FROM base AS build RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile diff --git a/Services/server/src/ver.json b/Services/server/src/ver.json new file mode 100644 index 0000000..c254881 --- /dev/null +++ b/Services/server/src/ver.json @@ -0,0 +1,4 @@ +{ + "version":"Auto gen version", + "builddate":"2020-02-02_22:22:22" +} \ No newline at end of file diff --git a/Services/server/tsconfig.json b/Services/server/tsconfig.json index b62253b..1fd359f 100644 --- a/Services/server/tsconfig.json +++ b/Services/server/tsconfig.json @@ -2,9 +2,7 @@ "compilerOptions": { "target": "es6", "module": "commonjs", - "rootDir": "src", "outDir": "dist", - "strict": true, "esModuleInterop": true,