Skip to content

Commit

Permalink
Migration workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Perdolique committed Aug 23, 2024
1 parent 682c491 commit dc96a98
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/database-migration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
on:
push:
branches:
- master
# paths:
# - 'server/database/migrations/**'
pull_request:
branches:
- master
# paths:
# - 'server/database/migrations/**'

jobs:
database-migration-staging:
name: Database migration (staging)
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.17.0
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run database migration
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
run: npm run db:migrate
database-migration-production:
name: Database migration (production)
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
environment: staging
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.17.0
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run database migration
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
run: npm run db:migrate

0 comments on commit dc96a98

Please sign in to comment.