Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 19 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,18 +133,18 @@ jobs:
run: npm ci
#CI is an install with adhering to package-lock

- name: Build solution without generating new package
env:
#Overwrite package generation
DISABLE_PACKAGE_GENERATION: true
run: |
dotnet build TELBlazor.sln -c Release \
/p:TELBlazorPackageVersion=$TELBLAZOR_PACKAGE_VERSION \
/p:NupkgOutputPath=$TELBLAZOR_PACKAGE_LOCAL_OUTPUT_PATH \
/p:UseTELBlazorComponentsProjectReference=$USE_TEL_BLAZOR_COMPONENTS_PROJECT_REFERENCE \
/p:TELBlazorPackageSource=$TELBLAZOR_PACKAGE_SOURCE \
/p:DisablePackageGeneration=$DISABLE_PACKAGE_GENERATION \
/p:E2ETracingEnabled=$E2E_TRACING_ENABLED
# - name: Build solution without generating new package
# env:
# #Overwrite package generation
# DISABLE_PACKAGE_GENERATION: true
# run: |
# dotnet build TELBlazor.sln -c Release \
# /p:TELBlazorPackageVersion=$TELBLAZOR_PACKAGE_VERSION \
# /p:NupkgOutputPath=$TELBLAZOR_PACKAGE_LOCAL_OUTPUT_PATH \
# /p:UseTELBlazorComponentsProjectReference=$USE_TEL_BLAZOR_COMPONENTS_PROJECT_REFERENCE \
# /p:TELBlazorPackageSource=$TELBLAZOR_PACKAGE_SOURCE \
# /p:DisablePackageGeneration=$DISABLE_PACKAGE_GENERATION \
# /p:E2ETracingEnabled=$E2E_TRACING_ENABLED

- name: Build and pack TELBlazor.Components
env:
Expand Down Expand Up @@ -236,16 +236,21 @@ jobs:
env:
#Overwrite package generation
DISABLE_PACKAGE_GENERATION: true
USE_TEL_BLAZOR_COMPONENTS_PROJECT_REFERENCE: false
run: |
dotnet build TELBlazor.sln -c Release \
/p:TELBlazorPackageVersion=$DEV_TELBLAZOR_PACKAGE_VERSION \
/p:TELBlazorPackageVersion=$TELBLAZOR_PACKAGE_VERSION \
/p:NupkgOutputPath=$TELBLAZOR_PACKAGE_LOCAL_OUTPUT_PATH \
/p:UseTELBlazorComponentsProjectReference=$USE_TEL_BLAZOR_COMPONENTS_PROJECT_REFERENCE \
/p:TELBlazorPackageSource=$TELBLAZOR_PACKAGE_SOURCE \
/p:DisablePackageGeneration=$DISABLE_PACKAGE_GENERATION \
/p:E2ETracingEnabled=$E2E_TRACING_ENABLED

- name: Publish WasmStaticClient TELBlazor ShowCase
env:
#Overwrite package generation
DISABLE_PACKAGE_GENERATION: true
USE_TEL_BLAZOR_COMPONENTS_PROJECT_REFERENCE: false
run: |
dotnet publish ./TELBlazor.Components.ShowCase.WasmStaticClient/TELBlazor.Components.ShowCase.WasmStaticClient.csproj --configuration Release \
/p:TELBlazorPackageVersion=$TELBLAZOR_PACKAGE_VERSION \
Expand All @@ -257,4 +262,4 @@ jobs:
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs # The folder the action should deploy
branch: gh-pages # The branch the action should deploy to
branch: gh-pages # The branch the action should deploy to
Loading