Skip to content

Random change to test deployments #37

Random change to test deployments

Random change to test deployments #37

name: Fly Deploy to Dev environment
on:
push:
branches:
- dev
jobs:
deploy:
name: Deploy Dev app
runs-on: ubuntu-latest
concurrency: deploy-group # optional: ensure only one action runs at a time
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy -c fly.dev.toml -a simscore-api-dev --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_DEV }}