Skip to content

Releases: warrenbrasil/dotnet-migrations

Global Tool Version Input Support

14 Nov 21:58
Compare
Choose a tag to compare

What's Changed

  • Add Input to Handle dotnet-ef version by @lgcmotta in #2

Full Changelog: v2...v3

RC: Global Tool Version Input Support

14 Nov 21:15
654986d
Compare
Choose a tag to compare

What's Changed

  • Add Input to Handle dotnet-ef version by @lgcmotta in #2

Full Changelog: v2...v3-beta

Using Connection Parameter from dotnet ef tool

17 Jan 00:23
1eb2c8b
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1...v2

Using Connection Parameter from dotnet ef tool

17 Jan 00:02
Compare
Choose a tag to compare

Create Warren .NET Migrations action

26 Aug 14:15
Compare
Choose a tag to compare

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>