Improve error messages for add database endpoint #41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Fly Deploy Showcase | |
| on: | |
| push: | |
| branches: | |
| - showcase | |
| paths: | |
| - "schema/**" | |
| - "schema-js/**" | |
| - "backend/**" | |
| - "frontend/**" | |
| - "fly.toml" | |
| - "docs/**" | |
| jobs: | |
| deploy: | |
| name: Deploy showcase | |
| runs-on: ubuntu-latest | |
| concurrency: deploy-showcase | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: superfly/flyctl-actions/setup-flyctl@master | |
| - run: flyctl deploy --remote-only | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |