Skip to content

Deploy to EC2

Deploy to EC2 #14

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 dependencies.
run: |
whoami
ls -ltrh /
ls -ltrh /opt
ls -ltrh /opt/hostedtoolcache
sudo apt-get update -y
sudo apt-get install -y cloud-utils
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.4'
- name: Run deployment
run: "$GITHUB_WORKSPACE/github.sh"
shell: bash
env:
ENVIRONMENT_NAME: ${{ inputs.environment }}