Skip to content

[IR-3339] studio: automatically display ElementList search results (#… #230

[IR-3339] studio: automatically display ElementList search results (#…

[IR-3339] studio: automatically display ElementList search results (#… #230

name: Deploy IR Engine
on:
push:
branches: [dev, int, stg]
paths-ignore:
- '**/*.md'
- '.*ignore'
workflow_dispatch:
inputs:
environment:
description: Evironment to Deploy
required: true
type: choice
options:
- dev
- int
- stg
env:
TARGET_BRANCH_NAME: ${{ github.base_ref || github.ref_name }}
jobs:
remote-dispatch-deploy:
runs-on: ubuntu-latest
steps:
- name: Send Remote Dispatch to Deploy IR-Engine
run: |
curl -H "Authorization: token ${{ secrets.IR_ORG_ACCESS_TOKEN }}" \
-H 'Accept: application/vnd.github.everest-preview+json' \
${{ secrets.IR_ENGINE_OPS_API_URL }} \
-d '{"event_type": "deploy-ir-engine", "client_payload": {"environment": "${{ env.TARGET_BRANCH_NAME }}"}}'