Skip to content

Add concurrency to GH deploy action #29

Add concurrency to GH deploy action

Add concurrency to GH deploy action #29

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:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: superfly/flyctl-actions@1.3
with:
args: 'deploy'