Skip to content

Limit requests to single submission a day #9

Limit requests to single submission a day

Limit requests to single submission a day #9

Workflow file for this run

name: deployment
on:
workflow_dispatch:
push:
branches:
- main
jobs:
migrate:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v2
- run: npm install
- name: Run migrations on prod
run: npm run migrate
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}