Skip to content

Commit

Permalink
Update deploy_prod.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandr Okhrimenko <[email protected]>
  • Loading branch information
dxavx authored Dec 26, 2023
1 parent fe18ee9 commit 9804d40
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ on:
- "ee"
- "fe"

ce:
type: boolean
description: CE
ee:
type: boolean
description: EE
fe:
type: boolean
description: FE

tag:
description: "Tag of the module, exapmle v1.21.1"
type: string
Expand Down Expand Up @@ -55,6 +65,28 @@ jobs:
echo $RELEASE_CHANNEL
echo $MODULES_MODULE_TAG
shell: bash

job-CE:
name: Edition CE
runs-on: ubuntu-latest
if: github.event.inputs.ce == 'true'
steps:
- run: echo "CE"

job-EE:
name: Edition EE
runs-on: ubuntu-latest
if: github.event.inputs.ee == 'true'
steps:
- run: echo "EE"

job-FE:
name: Edition FE
runs-on: ubuntu-latest
if: github.event.inputs.fe == 'true'
steps:
- run: echo "FE"



# steps:
Expand Down

0 comments on commit 9804d40

Please sign in to comment.