|
@@ -1,17 +1,32 @@
|
|
|
-name: Build and Push API Image
|
|
|
+name: Build and Push API & Web
|
|
|
|
|
|
on:
|
|
|
push:
|
|
|
branches:
|
|
|
- - 'main'
|
|
|
- - 'deploy/dev'
|
|
|
+ - "main"
|
|
|
+ - "deploy/dev"
|
|
|
release:
|
|
|
- types: [ published ]
|
|
|
+ types: [published]
|
|
|
+
|
|
|
+env:
|
|
|
+ DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
|
|
|
+ DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
+ DIFY_WEB_IMAGE_NAME: ${{ vars.DIFY_WEB_IMAGE_NAME || 'langgenius/dify-web' }}
|
|
|
+ DIFY_API_IMAGE_NAME: ${{ vars.DIFY_API_IMAGE_NAME || 'langgenius/dify-api' }}
|
|
|
|
|
|
jobs:
|
|
|
build-and-push:
|
|
|
runs-on: ubuntu-latest
|
|
|
if: github.event.pull_request.draft == false
|
|
|
+ strategy:
|
|
|
+ matrix:
|
|
|
+ include:
|
|
|
+ - service_name: "web"
|
|
|
+ image_name_env: "DIFY_WEB_IMAGE_NAME"
|
|
|
+ context: "web"
|
|
|
+ - service_name: "api"
|
|
|
+ image_name_env: "DIFY_API_IMAGE_NAME"
|
|
|
+ context: "api"
|
|
|
steps:
|
|
|
- name: Set up QEMU
|
|
|
uses: docker/setup-qemu-action@v3
|
|
@@ -22,14 +37,14 @@ jobs:
|
|
|
- name: Login to Docker Hub
|
|
|
uses: docker/login-action@v2
|
|
|
with:
|
|
|
- username: ${{ secrets.DOCKERHUB_USER }}
|
|
|
- password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
+ username: ${{ env.DOCKERHUB_USER }}
|
|
|
+ password: ${{ env.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
|
id: meta
|
|
|
uses: docker/metadata-action@v5
|
|
|
with:
|
|
|
- images: langgenius/dify-api
|
|
|
+ images: ${{ env[matrix.image_name_env] }}
|
|
|
tags: |
|
|
|
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }}
|
|
|
type=ref,event=branch
|
|
@@ -39,22 +54,11 @@ jobs:
|
|
|
- name: Build and push
|
|
|
uses: docker/build-push-action@v5
|
|
|
with:
|
|
|
- context: "{{defaultContext}}:api"
|
|
|
+ context: "{{defaultContext}}:${{ matrix.context }}"
|
|
|
platforms: ${{ startsWith(github.ref, 'refs/tags/') && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
|
|
|
- build-args: |
|
|
|
- COMMIT_SHA=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
|
|
+ build-args: COMMIT_SHA=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
|
|
push: true
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
cache-from: type=gha
|
|
|
cache-to: type=gha,mode=max
|
|
|
-
|
|
|
- - name: Deploy to server
|
|
|
- if: github.ref == 'refs/heads/deploy/dev'
|
|
|
- uses: appleboy/ssh-action@v0.1.8
|
|
|
- with:
|
|
|
- host: ${{ secrets.SSH_HOST }}
|
|
|
- username: ${{ secrets.SSH_USER }}
|
|
|
- key: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
|
- script: |
|
|
|
- ${{ secrets.SSH_SCRIPT }}
|