forked from github/plane
* [WEB-1116] feat: pages realtime sync (#5057) * init: live server for editor realtime sync * chore: authentication added * chore: updated logic to convert html to binary for old pages * chore: added description json on page update * chore: made all functions generic * chore: save description in json and html formats * refactor: document editor components * chore: uncomment ui package components * fix: without props extensions refactor * fix: merge conflicts resolved from preview * chore: init docker compose * chore: pages custom error codes * chore: add health check endpoint to the live server * chore: update without props extensions type * chore: better error handling * chore: update react-hook-form versions --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> * fix: docker related fixes * fix: module type fixes * fix: nginx update * fix: adding live server workflow * fix: workflow fixes * fix: docker compose fixes * fix: workflow fixes * fix: path config * fix: docker compose warnings * fix: nginx port forwarding * fix: update docker compose with new env * fix: env var fixes * fix: error handling * fix: docker compose env var * fix: compose fixes * chore: update server start message * chore: handle errors * fix: build errors * chore: update port * chore: update server port * chore: show error on authentication fail * chore: show error on authentication fail * feat: add redis extension * chore: updated restore version logic --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: Palanikannan M <akashmalinimurugu@gmail.com>
402 lines
16 KiB
YAML
402 lines
16 KiB
YAML
name: Branch Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
- preview
|
|
release:
|
|
types: [released, prereleased]
|
|
|
|
env:
|
|
TARGET_BRANCH: ${{ github.ref_name || github.event.release.target_commitish }}
|
|
|
|
jobs:
|
|
branch_build_setup:
|
|
name: Build Setup
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
gh_branch_name: ${{ steps.set_env_variables.outputs.TARGET_BRANCH }}
|
|
gh_buildx_driver: ${{ steps.set_env_variables.outputs.BUILDX_DRIVER }}
|
|
gh_buildx_version: ${{ steps.set_env_variables.outputs.BUILDX_VERSION }}
|
|
gh_buildx_platforms: ${{ steps.set_env_variables.outputs.BUILDX_PLATFORMS }}
|
|
gh_buildx_endpoint: ${{ steps.set_env_variables.outputs.BUILDX_ENDPOINT }}
|
|
build_proxy: ${{ steps.changed_files.outputs.proxy_any_changed }}
|
|
build_apiserver: ${{ steps.changed_files.outputs.apiserver_any_changed }}
|
|
build_admin: ${{ steps.changed_files.outputs.admin_any_changed }}
|
|
build_space: ${{ steps.changed_files.outputs.space_any_changed }}
|
|
build_web: ${{ steps.changed_files.outputs.web_any_changed }}
|
|
build_live: ${{ steps.changed_files.outputs.live_any_changed }}
|
|
|
|
steps:
|
|
- id: set_env_variables
|
|
name: Set Environment Variables
|
|
run: |
|
|
if [ "${{ env.TARGET_BRANCH }}" == "master" ] || [ "${{ github.event_name }}" == "release" ]; then
|
|
echo "BUILDX_DRIVER=cloud" >> $GITHUB_OUTPUT
|
|
echo "BUILDX_VERSION=lab:latest" >> $GITHUB_OUTPUT
|
|
echo "BUILDX_PLATFORMS=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
|
|
echo "BUILDX_ENDPOINT=makeplane/plane-dev" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "BUILDX_DRIVER=docker-container" >> $GITHUB_OUTPUT
|
|
echo "BUILDX_VERSION=latest" >> $GITHUB_OUTPUT
|
|
echo "BUILDX_PLATFORMS=linux/amd64" >> $GITHUB_OUTPUT
|
|
echo "BUILDX_ENDPOINT=" >> $GITHUB_OUTPUT
|
|
fi
|
|
echo "TARGET_BRANCH=${{ env.TARGET_BRANCH }}" >> $GITHUB_OUTPUT
|
|
|
|
- id: checkout_files
|
|
name: Checkout Files
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Get changed files
|
|
id: changed_files
|
|
uses: tj-actions/changed-files@v42
|
|
with:
|
|
files_yaml: |
|
|
apiserver:
|
|
- apiserver/**
|
|
proxy:
|
|
- nginx/**
|
|
admin:
|
|
- admin/**
|
|
- packages/**
|
|
- 'package.json'
|
|
- 'yarn.lock'
|
|
- 'tsconfig.json'
|
|
- 'turbo.json'
|
|
space:
|
|
- space/**
|
|
- packages/**
|
|
- 'package.json'
|
|
- 'yarn.lock'
|
|
- 'tsconfig.json'
|
|
- 'turbo.json'
|
|
web:
|
|
- web/**
|
|
- packages/**
|
|
- 'package.json'
|
|
- 'yarn.lock'
|
|
- 'tsconfig.json'
|
|
- 'turbo.json'
|
|
live:
|
|
- live/**
|
|
- packages/**
|
|
- 'package.json'
|
|
- 'yarn.lock'
|
|
- 'tsconfig.json'
|
|
- 'turbo.json'
|
|
|
|
branch_build_push_web:
|
|
if: ${{ needs.branch_build_setup.outputs.build_web == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' || needs.branch_build_setup.outputs.gh_branch_name == 'master' }}
|
|
runs-on: ubuntu-20.04
|
|
needs: [branch_build_setup]
|
|
env:
|
|
FRONTEND_TAG: makeplane/plane-frontend:${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
TARGET_BRANCH: ${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
BUILDX_DRIVER: ${{ needs.branch_build_setup.outputs.gh_buildx_driver }}
|
|
BUILDX_VERSION: ${{ needs.branch_build_setup.outputs.gh_buildx_version }}
|
|
BUILDX_PLATFORMS: ${{ needs.branch_build_setup.outputs.gh_buildx_platforms }}
|
|
BUILDX_ENDPOINT: ${{ needs.branch_build_setup.outputs.gh_buildx_endpoint }}
|
|
steps:
|
|
- name: Set Frontend Docker Tag
|
|
run: |
|
|
if [ "${{ github.event_name }}" == "release" ]; then
|
|
TAG=makeplane/plane-frontend:stable,makeplane/plane-frontend:${{ github.event.release.tag_name }}
|
|
elif [ "${{ env.TARGET_BRANCH }}" == "master" ]; then
|
|
TAG=makeplane/plane-frontend:latest
|
|
else
|
|
TAG=${{ env.FRONTEND_TAG }}
|
|
fi
|
|
echo "FRONTEND_TAG=${TAG}" >> $GITHUB_ENV
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: ${{ env.BUILDX_DRIVER }}
|
|
version: ${{ env.BUILDX_VERSION }}
|
|
endpoint: ${{ env.BUILDX_ENDPOINT }}
|
|
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build and Push Frontend to Docker Container Registry
|
|
uses: docker/build-push-action@v5.1.0
|
|
with:
|
|
context: .
|
|
file: ./web/Dockerfile.web
|
|
platforms: ${{ env.BUILDX_PLATFORMS }}
|
|
tags: ${{ env.FRONTEND_TAG }}
|
|
push: true
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
branch_build_push_admin:
|
|
if: ${{ needs.branch_build_setup.outputs.build_admin== 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' || needs.branch_build_setup.outputs.gh_branch_name == 'master' }}
|
|
runs-on: ubuntu-20.04
|
|
needs: [branch_build_setup]
|
|
env:
|
|
ADMIN_TAG: makeplane/plane-admin:${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
TARGET_BRANCH: ${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
BUILDX_DRIVER: ${{ needs.branch_build_setup.outputs.gh_buildx_driver }}
|
|
BUILDX_VERSION: ${{ needs.branch_build_setup.outputs.gh_buildx_version }}
|
|
BUILDX_PLATFORMS: ${{ needs.branch_build_setup.outputs.gh_buildx_platforms }}
|
|
BUILDX_ENDPOINT: ${{ needs.branch_build_setup.outputs.gh_buildx_endpoint }}
|
|
steps:
|
|
- name: Set Admin Docker Tag
|
|
run: |
|
|
if [ "${{ github.event_name }}" == "release" ]; then
|
|
TAG=makeplane/plane-admin:stable,makeplane/plane-admin:${{ github.event.release.tag_name }}
|
|
elif [ "${{ env.TARGET_BRANCH }}" == "master" ]; then
|
|
TAG=makeplane/plane-admin:latest
|
|
else
|
|
TAG=${{ env.ADMIN_TAG }}
|
|
fi
|
|
echo "ADMIN_TAG=${TAG}" >> $GITHUB_ENV
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: ${{ env.BUILDX_DRIVER }}
|
|
version: ${{ env.BUILDX_VERSION }}
|
|
endpoint: ${{ env.BUILDX_ENDPOINT }}
|
|
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build and Push Frontend to Docker Container Registry
|
|
uses: docker/build-push-action@v5.1.0
|
|
with:
|
|
context: .
|
|
file: ./admin/Dockerfile.admin
|
|
platforms: ${{ env.BUILDX_PLATFORMS }}
|
|
tags: ${{ env.ADMIN_TAG }}
|
|
push: true
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
branch_build_push_space:
|
|
if: ${{ needs.branch_build_setup.outputs.build_space == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' || needs.branch_build_setup.outputs.gh_branch_name == 'master' }}
|
|
runs-on: ubuntu-20.04
|
|
needs: [branch_build_setup]
|
|
env:
|
|
SPACE_TAG: makeplane/plane-space:${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
TARGET_BRANCH: ${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
BUILDX_DRIVER: ${{ needs.branch_build_setup.outputs.gh_buildx_driver }}
|
|
BUILDX_VERSION: ${{ needs.branch_build_setup.outputs.gh_buildx_version }}
|
|
BUILDX_PLATFORMS: ${{ needs.branch_build_setup.outputs.gh_buildx_platforms }}
|
|
BUILDX_ENDPOINT: ${{ needs.branch_build_setup.outputs.gh_buildx_endpoint }}
|
|
steps:
|
|
- name: Set Space Docker Tag
|
|
run: |
|
|
if [ "${{ github.event_name }}" == "release" ]; then
|
|
TAG=makeplane/plane-space:stable,makeplane/plane-space:${{ github.event.release.tag_name }}
|
|
elif [ "${{ env.TARGET_BRANCH }}" == "master" ]; then
|
|
TAG=makeplane/plane-space:latest
|
|
else
|
|
TAG=${{ env.SPACE_TAG }}
|
|
fi
|
|
echo "SPACE_TAG=${TAG}" >> $GITHUB_ENV
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: ${{ env.BUILDX_DRIVER }}
|
|
version: ${{ env.BUILDX_VERSION }}
|
|
endpoint: ${{ env.BUILDX_ENDPOINT }}
|
|
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build and Push Space to Docker Hub
|
|
uses: docker/build-push-action@v5.1.0
|
|
with:
|
|
context: .
|
|
file: ./space/Dockerfile.space
|
|
platforms: ${{ env.BUILDX_PLATFORMS }}
|
|
tags: ${{ env.SPACE_TAG }}
|
|
push: true
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
branch_build_push_apiserver:
|
|
if: ${{ needs.branch_build_setup.outputs.build_apiserver == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' || needs.branch_build_setup.outputs.gh_branch_name == 'master' }}
|
|
runs-on: ubuntu-20.04
|
|
needs: [branch_build_setup]
|
|
env:
|
|
BACKEND_TAG: makeplane/plane-backend:${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
TARGET_BRANCH: ${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
BUILDX_DRIVER: ${{ needs.branch_build_setup.outputs.gh_buildx_driver }}
|
|
BUILDX_VERSION: ${{ needs.branch_build_setup.outputs.gh_buildx_version }}
|
|
BUILDX_PLATFORMS: ${{ needs.branch_build_setup.outputs.gh_buildx_platforms }}
|
|
BUILDX_ENDPOINT: ${{ needs.branch_build_setup.outputs.gh_buildx_endpoint }}
|
|
steps:
|
|
- name: Set Backend Docker Tag
|
|
run: |
|
|
if [ "${{ github.event_name }}" == "release" ]; then
|
|
TAG=makeplane/plane-backend:stable,makeplane/plane-backend:${{ github.event.release.tag_name }}
|
|
elif [ "${{ env.TARGET_BRANCH }}" == "master" ]; then
|
|
TAG=makeplane/plane-backend:latest
|
|
else
|
|
TAG=${{ env.BACKEND_TAG }}
|
|
fi
|
|
echo "BACKEND_TAG=${TAG}" >> $GITHUB_ENV
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: ${{ env.BUILDX_DRIVER }}
|
|
version: ${{ env.BUILDX_VERSION }}
|
|
endpoint: ${{ env.BUILDX_ENDPOINT }}
|
|
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build and Push Backend to Docker Hub
|
|
uses: docker/build-push-action@v5.1.0
|
|
with:
|
|
context: ./apiserver
|
|
file: ./apiserver/Dockerfile.api
|
|
platforms: ${{ env.BUILDX_PLATFORMS }}
|
|
push: true
|
|
tags: ${{ env.BACKEND_TAG }}
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
branch_build_push_live:
|
|
if: ${{ needs.branch_build_setup.outputs.build_live == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' || needs.branch_build_setup.outputs.gh_branch_name == 'master' }}
|
|
runs-on: ubuntu-20.04
|
|
needs: [branch_build_setup]
|
|
env:
|
|
LIVE_TAG: makeplane/plane-live:${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
TARGET_BRANCH: ${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
BUILDX_DRIVER: ${{ needs.branch_build_setup.outputs.gh_buildx_driver }}
|
|
BUILDX_VERSION: ${{ needs.branch_build_setup.outputs.gh_buildx_version }}
|
|
BUILDX_PLATFORMS: ${{ needs.branch_build_setup.outputs.gh_buildx_platforms }}
|
|
BUILDX_ENDPOINT: ${{ needs.branch_build_setup.outputs.gh_buildx_endpoint }}
|
|
steps:
|
|
- name: Set Live Docker Tag
|
|
run: |
|
|
if [ "${{ github.event_name }}" == "release" ]; then
|
|
TAG=makeplane/plane-live:stable,makeplane/plane-live:${{ github.event.release.tag_name }}
|
|
elif [ "${{ env.TARGET_BRANCH }}" == "master" ]; then
|
|
TAG=makeplane/plane-live:latest
|
|
else
|
|
TAG=${{ env.LIVE_TAG }}
|
|
fi
|
|
echo "LIVE_TAG=${TAG}" >> $GITHUB_ENV
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: ${{ env.BUILDX_DRIVER }}
|
|
version: ${{ env.BUILDX_VERSION }}
|
|
endpoint: ${{ env.BUILDX_ENDPOINT }}
|
|
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build and Push Live Server to Docker Hub
|
|
uses: docker/build-push-action@v5.1.0
|
|
with:
|
|
context: .
|
|
file: ./live/Dockerfile.live
|
|
platforms: ${{ env.BUILDX_PLATFORMS }}
|
|
tags: ${{ env.LIVE_TAG }}
|
|
push: true
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
branch_build_push_proxy:
|
|
if: ${{ needs.branch_build_setup.outputs.build_proxy == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' || needs.branch_build_setup.outputs.gh_branch_name == 'master' }}
|
|
runs-on: ubuntu-20.04
|
|
needs: [branch_build_setup]
|
|
env:
|
|
PROXY_TAG: makeplane/plane-proxy:${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
TARGET_BRANCH: ${{ needs.branch_build_setup.outputs.gh_branch_name }}
|
|
BUILDX_DRIVER: ${{ needs.branch_build_setup.outputs.gh_buildx_driver }}
|
|
BUILDX_VERSION: ${{ needs.branch_build_setup.outputs.gh_buildx_version }}
|
|
BUILDX_PLATFORMS: ${{ needs.branch_build_setup.outputs.gh_buildx_platforms }}
|
|
BUILDX_ENDPOINT: ${{ needs.branch_build_setup.outputs.gh_buildx_endpoint }}
|
|
steps:
|
|
- name: Set Proxy Docker Tag
|
|
run: |
|
|
if [ "${{ github.event_name }}" == "release" ]; then
|
|
TAG=makeplane/plane-proxy:stable,makeplane/plane-proxy:${{ github.event.release.tag_name }}
|
|
elif [ "${{ env.TARGET_BRANCH }}" == "master" ]; then
|
|
TAG=makeplane/plane-proxy:latest
|
|
else
|
|
TAG=${{ env.PROXY_TAG }}
|
|
fi
|
|
echo "PROXY_TAG=${TAG}" >> $GITHUB_ENV
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: ${{ env.BUILDX_DRIVER }}
|
|
version: ${{ env.BUILDX_VERSION }}
|
|
endpoint: ${{ env.BUILDX_ENDPOINT }}
|
|
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build and Push Plane-Proxy to Docker Hub
|
|
uses: docker/build-push-action@v5.1.0
|
|
with:
|
|
context: ./nginx
|
|
file: ./nginx/Dockerfile
|
|
platforms: ${{ env.BUILDX_PLATFORMS }}
|
|
tags: ${{ env.PROXY_TAG }}
|
|
push: true
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|