Deploy development #6
This file contains hidden or 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: Deploy development | |
on: | |
workflow_dispatch: # manual run | |
registry_package: # on new package version (main path) | |
workflow_run: # HACK: redundant trigger to mitigate GitHub's huge delays in registry_package event processing | |
workflows: ['Release Workflow'] | |
types: | |
- completed | |
jobs: | |
gitlab-dev-deploy: | |
if: | | |
github.event_name == 'workflow_dispatch' || | |
github.event.registry_package.package_version.container_metadata.tag.name == 'development' || | |
(github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'development') | |
uses: epam/ai-dial-ci/.github/workflows/deploy-development.yml@2.6.2 | |
with: | |
gitlab-project-id: '2699' | |
gitlab-project-ref: 'main' | |
environment-name: 'development' | |
secrets: | |
DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }} | |
DEPLOY_ACCESS_TOKEN: ${{ secrets.DEPLOY_ACCESS_TOKEN }} | |
DEPLOY_TRIGGER_TOKEN: ${{ secrets.DEPLOY_TRIGGER_TOKEN }} |