upgrade dify #158
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Custom Build and Push API & Web | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "deploy/dev" | |
| release: | |
| types: [published] | |
| env: | |
| DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }} | |
| DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
| DOCKER_REGISTRY: ${{ vars.DOCKER_REGISTRY || 'quay.io' }} | |
| 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: Get current date | |
| id: date | |
| run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
| # - name: Checkout | |
| # uses: actions/checkout@v4.1.1 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to Registry ${{ env.DOCKER_REGISTRY }} | |
| # uses: docker/login-action@v2 | |
| uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c | |
| with: | |
| registry: ${{ env.DOCKER_REGISTRY }} | |
| username: ${{ env.DOCKERHUB_USER }} | |
| password: ${{ env.DOCKERHUB_TOKEN }} | |
| - name: Extract metadata (tags, labels) for Docker | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ${{ env[matrix.image_name_env] }} | |
| tags: | | |
| type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }} | |
| type=ref,event=branch | |
| type=sha,enable=true,priority=100,prefix=,suffix=,format=long | |
| type=raw,value=${{ github.ref_name }},enable=${{ startsWith(github.ref, 'refs/tags/') }} | |
| - name: Prepare Custom UI | |
| run: | | |
| pwd | |
| ls -l | |
| # cd ./web/ | |
| # bash -x ./custom.sh | |
| - name: Build and push | |
| uses: docker/build-push-action@v5 | |
| with: | |
| 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'] }} | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |