Skip to content

Update auto scaling #36

Update auto scaling

Update auto scaling #36

Workflow file for this run

name: Fly Deploy
on:
push:
branches:
- 'main'
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
name: '✅ Validate'
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v3
- name: 📥 Install deps
run: npm ci
- run: npm run validate
deploy:
name: '🚀 Deploy'
needs: validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: superfly/flyctl-actions@1.3
with:
args: 'deploy'