Skip to content

Changed all back to astro:db from turso. #21

Changed all back to astro:db from turso.

Changed all back to astro:db from turso. #21

Workflow file for this run

# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
name: Fly Deploy
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 code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20.18.0
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Deploy to Fly
run: flyctl deploy --remote-only
continue-on-error: true
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}