This is an example repository that demonstrates how to set up automated database migrations using Flyway and GitHub Actions
Flyway is a popular database migration tool that can be easily integrated with GitHub Actions to automate your migration process.
To get started with this example, you'll need to have the following:
- A PostgreSQL database
- Flyway installed on your local machine
- A GitHub account
Before you can use Flyway, you'll need to download it and configure it with your database connection details. You can download Flyway from the official website: https://flywaydb.org/download/.
Once you've downloaded and installed Flyway, you'll need to update a configuration file (flyway.conf
) in /conf
directory with appropriate values as per your database setup.
git clone [email protected]:Chetan07j/flyway-migrator.git
cd flyway-migrator
You can execute the following command to run migration scripts and set the schema to the latest version:
flyway -configFiles="./conf/flyway.conf" migrate
GitHub Action workflow_dispatch event allows you to manually trigger a workflow from the GitHub Actions tab. It provides a way to run workflows without pushing any changes to the repository.
After adding the migration script to the sql directory in this repository, you can easily run the GitHub Action to execute those migrations in any location you specify.
An additional step is included in the Action file, which saves the output of flyway info
command into a text file with a filename containing a timestamp
, and then places that file under the migration-status
directory.
💙 If you like this project, give it a ⭐