Skip to content

fix workflow

fix workflow #31

Workflow file for this run

name: Fly Deploy

Check failure on line 1 in .github/workflows/fly-deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/fly-deploy.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
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:
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'