This file contains 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: Branch Build Test | |
on: | |
workflow_dispatch: | |
push: | |
env: | |
TARGET_BRANCH: ${{ github.ref_name }} | |
jobs: | |
branch_build_setup: | |
name: Build Setup | |
runs-on: linux-arm | |
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 }} | |
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/arm64" >> $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' | |
branch_build_push_admin: | |
runs-on: ubuntu-latest | |
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: "linux/amd64" | |
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_admin_arm: | |
runs-on: linux-arm | |
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 }} |