what will be the alternate code for action server deployment in gitlab for docker image
on:
push:
branches:
- main
jobs:
build_and_deploy:
runs-on: ubuntu-latest
name: Build Action Server image and upgrade Rasa X deployment
steps:
[..]
# This step shows only the example of output parameter usage
# and it's not focused on deployment itself.
- name: "Upgrade a Rasa X deployment"
run: |
helm upgrade --install --reuse-values \
--set app.name=${{ steps.action_server.outputs.docker_image_name }} \
--set app.tag=${{ steps.action_server.outputs.docker_image_tag }} rasa rasa-x/rasa-x
The above code is taken RASA documentation,
This is the code is saw on rasa documentation to add action server image, my doubt is how do i edit this file using CI/CD, or is there any better way to automate deployment using gitlab CI/CD