mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: adding github workflow events
This commit is contained in:
parent
cb78ccad1f
commit
f493a03f56
30
.github/workflows/build-branch.yml
vendored
30
.github/workflows/build-branch.yml
vendored
@ -2,6 +2,27 @@ name: Branch Build
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
build-web:
|
||||||
|
required: false
|
||||||
|
description: "Build Web"
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
build-space:
|
||||||
|
required: false
|
||||||
|
description: "Build Space"
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
build-api:
|
||||||
|
required: false
|
||||||
|
description: "Build API"
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
build-proxy:
|
||||||
|
required: false
|
||||||
|
description: "Build Proxy"
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
@ -23,10 +44,10 @@ 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_frontend: ${{ steps.changed_files.outputs.frontend_any_changed || github.event.inputs.build-web }}
|
||||||
build_space: ${{ steps.changed_files.outputs.space_any_changed }}
|
build_space: ${{ steps.changed_files.outputs.space_any_changed || github.event.inputs.build-space }}
|
||||||
build_backend: ${{ steps.changed_files.outputs.backend_any_changed }}
|
build_backend: ${{ steps.changed_files.outputs.backend_any_changed || github.event.inputs.build-api }}
|
||||||
build_proxy: ${{ steps.changed_files.outputs.proxy_any_changed }}
|
build_proxy: ${{ steps.changed_files.outputs.proxy_any_changed || github.event.inputs.build-proxy }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- id: set_env_variables
|
- id: set_env_variables
|
||||||
@ -280,4 +301,3 @@ jobs:
|
|||||||
DOCKER_BUILDKIT: 1
|
DOCKER_BUILDKIT: 1
|
||||||
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user