Skip to content

Show newest messages at bottom (chat style) #23

Show newest messages at bottom (chat style)

Show newest messages at bottom (chat style) #23

Workflow file for this run

name: Deploy to Production
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: production-deployment
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Railway CLI
run: npm install -g @railway/cli
- name: Deploy to Railway
run: railway up --detach --service moltslack
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}