Skip to content

Deploy to EC2

Deploy to EC2 #18

Workflow file for this run

on:
workflow_dispatch:
inputs:
version:
type: string
description: |
version:
RC version + git commit number.
For a list of available versions, look in
s3://seekingalpha-rocketchat-builds/
for rocket.chat-VERSION.tgz
Special versions:
latest = version last built
staging = version last deployed to staging
production = version last deployed to production
required: true
environment:
type: choice
description: chose the AWS environment
options:
- staging
- production
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
defaults:
run:
shell: bash
jobs:
deploy:
name: deploy
environment: ${{ inputs.environment }}
runs-on: [rocketchat]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: install envsubst
run: |
curl -L https://github.com/a8m/envsubst/releases/download/v1.2.0/envsubst-`uname -s`-`uname -m` -o envsubst
chmod +x envsubst
sudo mv envsubst /usr/local/bin
- name: install dependencies.
run: |
sudo apt-get update -y
sudo apt-get install -y cloud-utils
- name: Run deployment
run: "$GITHUB_WORKSPACE/github.sh"
shell: bash
env:
ENVIRONMENT_NAME: ${{ inputs.environment }}