From adfb19160c38ee588707dd3ec23b6a099c7c5bc9 Mon Sep 17 00:00:00 2001 From: Sawit Koseeyaumporn Date: Wed, 20 Nov 2024 09:03:34 +0700 Subject: [PATCH] add: deploy.yml --- .github/workflows/deploy.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..9bdd6e2 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,22 @@ +# name: Deploy +# on: +# push: +# paths: +# - prisma/migrations/** # Only run this workflow when migrations are updated +# branches: +# - main + +# jobs: +# deploy: +# runs-on: ubuntu-latest +# steps: +# - name: Checkout repo +# uses: actions/checkout@v3 +# - name: Setup Node +# uses: actions/setup-node@v3 +# - name: Install dependencies +# run: npm install +# - name: Apply all pending migrations to the database +# run: npx prisma migrate deploy +# env: +# DATABASE_URL: ${{ secrets.DATABASE_URL }} \ No newline at end of file