Releases: warrenbrasil/dotnet-migrations
Releases · warrenbrasil/dotnet-migrations
Global Tool Version Input Support
RC: Global Tool Version Input Support
What's Changed
Full Changelog: v2...v3-beta
Using Connection Parameter from dotnet ef tool
Using Connection Parameter from dotnet ef tool
Full Changelog: v1...v2-beta
Create Warren .NET Migrations action
Warren - .NET Migrations 💿
This action is responsible for applying .NET migrations to a database
Inputs
project-path
Required: The path for the project that holds the migrations folder
startup-project-path
Required: The startup project of the application
context
Required: The DbContext class name
connection
Required: The connection string for the database to apply migrations
Usage
- name: Warren - Configure .NET SDK
uses: warrenbrasil/dotnet-migrations@v1
with:
project-path: ./src/FooProject
startup-project-path: ./src/FooProject.API
context: FooDbContext
connection: <CONNECTION_STRING_GOES_HERE>