Skip to content

Document queue monitoring, failed jobs, pausing, and named queues (#564) #94

Document queue monitoring, failed jobs, pausing, and named queues (#564)

Document queue monitoring, failed jobs, pausing, and named queues (#564) #94

Workflow file for this run

name: Deploy to production
on:
workflow_dispatch:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '24.x'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn build
- name: copy compiled assets to remote
uses: appleboy/scp-action@v1
with:
host: ${{ secrets.DEPLOY_HOST }}
username: ${{ secrets.DEPLOY_USERNAME }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
port: ${{ secrets.DEPLOY_PORT }}
source: build
target: public_html/docs.flarum.org