Skip to content

Deployment steps

Deployment steps #37

Workflow file for this run

name: Deployment steps
on:
workflow_run:
workflows: [General Checks]
types: [completed]
branches: [main]
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}