0
0
Fork 0
mirror of https://github.com/alerta/alerta.git synced 2025-01-24 17:29:39 +00:00
alerta_alerta/.github/workflows/deploy.yml
2023-03-09 21:43:04 +01:00

22 lines
415 B
YAML

name: Deploy
on:
push:
branches:
- master
- 'release/**'
pull_request:
branches:
- master
- 'release/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only --app alerta-api
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}