This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / .github / workflows / fly-prod-deploy.yml
389 B 16 lines
1name: Fly Prod Deploy 2on: 3 push: 4 branches: 5 - main 6jobs: 7 deploy: 8 name: Deploy app 9 runs-on: ubuntu-latest 10 concurrency: deploy-group 11 steps: 12 - uses: actions/checkout@v4 13 - uses: superfly/flyctl-actions/setup-flyctl@master 14 - run: flyctl deploy --remote-only -c fly.production.toml 15 env: 16 FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}