mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: workflow updates
This commit is contained in:
parent
cfdcda4445
commit
9d2d9c59ca
30
.github/workflows/build-branch.yml
vendored
30
.github/workflows/build-branch.yml
vendored
@ -22,11 +22,11 @@ jobs:
|
|||||||
gh_buildx_version: ${{ steps.set_env_variables.outputs.BUILDX_VERSION }}
|
gh_buildx_version: ${{ steps.set_env_variables.outputs.BUILDX_VERSION }}
|
||||||
gh_buildx_platforms: ${{ steps.set_env_variables.outputs.BUILDX_PLATFORMS }}
|
gh_buildx_platforms: ${{ steps.set_env_variables.outputs.BUILDX_PLATFORMS }}
|
||||||
gh_buildx_endpoint: ${{ steps.set_env_variables.outputs.BUILDX_ENDPOINT }}
|
gh_buildx_endpoint: ${{ steps.set_env_variables.outputs.BUILDX_ENDPOINT }}
|
||||||
build_frontend: ${{ steps.changed_files.outputs.frontend_any_changed }}
|
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_admin: ${{ steps.changed_files.outputs.admin_any_changed }}
|
||||||
build_space: ${{ steps.changed_files.outputs.space_any_changed }}
|
build_space: ${{ steps.changed_files.outputs.space_any_changed }}
|
||||||
build_backend: ${{ steps.changed_files.outputs.backend_any_changed }}
|
build_web: ${{ steps.changed_files.outputs.web_any_changed }}
|
||||||
build_proxy: ${{ steps.changed_files.outputs.proxy_any_changed }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- id: set_env_variables
|
- id: set_env_variables
|
||||||
@ -54,8 +54,12 @@ jobs:
|
|||||||
uses: tj-actions/changed-files@v42
|
uses: tj-actions/changed-files@v42
|
||||||
with:
|
with:
|
||||||
files_yaml: |
|
files_yaml: |
|
||||||
frontend:
|
apiserver:
|
||||||
- web/**
|
- apiserver/**
|
||||||
|
proxy:
|
||||||
|
- nginx/**
|
||||||
|
admin:
|
||||||
|
- admin/**
|
||||||
- packages/**
|
- packages/**
|
||||||
- 'package.json'
|
- 'package.json'
|
||||||
- 'yarn.lock'
|
- 'yarn.lock'
|
||||||
@ -68,20 +72,16 @@ jobs:
|
|||||||
- 'yarn.lock'
|
- 'yarn.lock'
|
||||||
- 'tsconfig.json'
|
- 'tsconfig.json'
|
||||||
- 'turbo.json'
|
- 'turbo.json'
|
||||||
admin:
|
web:
|
||||||
- admin/**
|
- web/**
|
||||||
- packages/**
|
- packages/**
|
||||||
- 'package.json'
|
- 'package.json'
|
||||||
- 'yarn.lock'
|
- 'yarn.lock'
|
||||||
- 'tsconfig.json'
|
- 'tsconfig.json'
|
||||||
- 'turbo.json'
|
- 'turbo.json'
|
||||||
backend:
|
|
||||||
- apiserver/**
|
|
||||||
proxy:
|
|
||||||
- nginx/**
|
|
||||||
|
|
||||||
branch_build_push_frontend:
|
branch_build_push_web:
|
||||||
if: ${{ needs.branch_build_setup.outputs.build_frontend == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' || needs.branch_build_setup.outputs.gh_branch_name == 'master' }}
|
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
|
runs-on: ubuntu-20.04
|
||||||
needs: [branch_build_setup]
|
needs: [branch_build_setup]
|
||||||
env:
|
env:
|
||||||
@ -236,8 +236,8 @@ jobs:
|
|||||||
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
branch_build_push_backend:
|
branch_build_push_apiserver:
|
||||||
if: ${{ needs.branch_build_setup.outputs.build_backend == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'release' || needs.branch_build_setup.outputs.gh_branch_name == 'master' }}
|
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
|
runs-on: ubuntu-20.04
|
||||||
needs: [branch_build_setup]
|
needs: [branch_build_setup]
|
||||||
env:
|
env:
|
||||||
|
Loading…
Reference in New Issue
Block a user