Skip to content

Merge pull request #61 from seedcase-project/feat/54-test-actions #4

Merge pull request #61 from seedcase-project/feat/54-test-actions

Merge pull request #61 from seedcase-project/feat/54-test-actions #4

Workflow file for this run

name: Deploy to Fly.io
# Only trigger when pushed/merged to main
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
concurrency: deploy-group # optional: ensure only one action runs at a time
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Deploy to Fly.io
uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}