Skip to content

Commit

Permalink
- Adds Github CI/CD workflow on master branch.
Browse files Browse the repository at this point in the history
- Changes database connection string path because the cloud platform we use for deployment does not support the previous path.
  • Loading branch information
emaadgh committed May 14, 2024
1 parent f52c828 commit e2589c3
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
44 changes: 44 additions & 0 deletions .github/workflows/liara.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: MyBook-CI/CD

env:
DOTNET_VERSION: '8'

on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout source code
uses: actions/checkout@v3

- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Restore packages
run: dotnet restore MyBook.sln

- name: Build
run: dotnet build MyBook.sln --no-restore

- name: Run tests
run: dotnet test MyBook.sln --no-build --verbosity normal
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: update-liara
env:
LIARA_TOKEN: ${{ secrets.LIARA_API_TOKEN }}
run: |
npm i -g @liara/cli@5
liara deploy --app="mybook" --api-token="$LIARA_TOKEN" --no-app-logs --port 80
2 changes: 1 addition & 1 deletion MyBook/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}).AddNewtonsoftJson();

builder.Services.AddDbContext<MyBookDbContext>(options =>
options.UseSqlServer(builder.Configuration.GetConnectionString("MyBookDbContextConnection")));
options.UseSqlServer(builder.Configuration["MyBookDbContextConnection"]));

builder.Services.AddTransient<IPropertyMappingService, PropertyMappingService>();
builder.Services.AddTransient<IPropertyCheckerService, PropertyCheckerService>();
Expand Down

0 comments on commit e2589c3

Please sign in to comment.