Skip to content

chore: add deploy workflow #1

chore: add deploy workflow

chore: add deploy workflow #1

Workflow file for this run

name: Deploy
on:
push:
branches:
- hotfix/1.9.1
jobs:
deploy:
name: Deploy to Production
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup fly
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy
run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}