Skip to content

Commit

Permalink
fix xperience template name
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Medek authored and Martin Medek committed Oct 18, 2024
1 parent 3b41570 commit 07fd315
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ on:
jobs:
build:
runs-on: ubuntu-latest

env:
SA_PASSWORD: "Your_password123"
ACCEPT_EULA: "Y"
services:
sqlserver:
image: mcr.microsoft.com/mssql/server:2019-latest
env:
SA_PASSWORD: "Your_password123"
SA_PASSWORD: "$SA_PASSWORD"
ACCEPT_EULA: "Y"
ports:
- 1433:1433
Expand Down Expand Up @@ -91,7 +93,7 @@ jobs:
run: |
mkdir xbk
cd xbk
dotnet new kentico-boilerplate -n kentico-boilerplate
echo "y" | dotnet new kentico-xperience-mvc -n kentico-boilerplate
- name: Tool restore
run: |
Expand All @@ -100,7 +102,7 @@ jobs:
- name: Create Kentico database
run: |
cd xbk
dotnet kentico-xperience-dbmanager -- -s "localhost" -d "pwtest" -u sa -p $SA_PASSWORD -a "admin" --hash-string-salt "<hash_string_salt>" --license-file "<license_file_path>"
dotnet kentico-xperience-dbmanager -- -s "localhost" -d "pwtest" -u "sa" -p "$SA_PASSWORD" -a "admin" --recreate-existing-database --hash-string-salt "<hash_string_salt>" --license-file "<license_file_path>"
- name: Run Kentico Xperience project
run: |
Expand Down

0 comments on commit 07fd315

Please sign in to comment.