chore: update migration checksum for MWK institutions SQL file #252
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: Atlas Database Migrations | |
on: | |
push: | |
branches: | |
- main | |
- stable | |
jobs: | |
migrate: | |
runs-on: ubuntu-latest | |
environment: ${{ github.ref == 'refs/heads/main' && 'staging' || 'production' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Atlas | |
run: | | |
curl -sSf https://atlasgo.sh | sh | |
echo "$HOME/.atlas/bin" >> $GITHUB_PATH | |
- name: Run Migrations | |
run: | | |
atlas migrate apply \ | |
--dir "file://ent/migrate/migrations" \ | |
--url "${{ secrets.DB_URL }}" |