-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aleksandr Zimin <[email protected]>
- Loading branch information
1 parent
ff569c7
commit 0814240
Showing
3 changed files
with
64 additions
and
11 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Deploy Dev | ||
|
||
env: | ||
MODULES_REGISTRY: ${{ vars.DEV_REGISTRY }} | ||
CI_COMMIT_REF_NAME: ${{ github.event.inputs.tag }} | ||
MODULES_MODULE_NAME: ${{ vars.MODULE_NAME }} | ||
MODULES_MODULE_SOURCE: ${{ vars.DEV_MODULE_SOURCE }} | ||
MODULES_REGISTRY_LOGIN: ${{ secrets.DEV_MODULES_REGISTRY_LOGIN }} | ||
MODULES_REGISTRY_PASSWORD: ${{ secrets.DEV_MODULES_REGISTRY_PASSWORD }} | ||
RELEASE_CHANNEL: ${{ github.event.inputs.channel }} | ||
MODULES_MODULE_TAG: ${{ github.event.inputs.tag }} | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
channel: | ||
description: "Select release channel" | ||
type: choice | ||
default: alpha | ||
options: | ||
- "alpha" | ||
- "beta" | ||
- "early-access" | ||
- "stable" | ||
- "rock-solid" | ||
|
||
tag: | ||
description: "The module's tag, which must include the -dev postfix. For example: v1.21.1-dev" | ||
type: string | ||
required: true | ||
|
||
jobs: | ||
deploy-dev: | ||
runs-on: ubuntu-latest | ||
name: Deploy dev | ||
steps: | ||
- name: PRINT VARS | ||
run: | | ||
echo MODULES_REGISTRY=$MODULES_REGISTRY | ||
echo MODULE_SOURCE_NAME=$MODULE_SOURCE_NAME | ||
echo CI_COMMIT_REF_NAME=$CI_COMMIT_REF_NAME | ||
echo MODULES_MODULE_NAME=$MODULES_MODULE_NAME | ||
echo RELEASE_CHANNEL=$RELEASE_CHANNEL | ||
echo MODULES_MODULE_TAG=$MODULES_MODULE_TAG | ||
shell: bash | ||
- name: Validation for tag | ||
run: | | ||
echo ${{ github.event.inputs.tag }} | grep -P '^v\d+\.\d+\.\d+-dev$' | ||
shell: bash | ||
|
||
- uses: actions/checkout@v4 | ||
- uses: deckhouse/modules-actions/setup@v1 |
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