Skip to content

Commit

Permalink
feat(ci/deploy): Update build and package configurations
Browse files Browse the repository at this point in the history
- Changed dotnet version to 8.0 in the build-dotnet.yml workflow
- Updated configuration from 'Preview' to 'Release' in deploy-preview.yml
- Modified build-package-api.yml workflow to use package-dotnet.yml from Nodsoft/workflows repository
- Adjusted dotnet version, configuration, project file, and artifact name in package-dotnet.yml for WowsKarma.Api
  • Loading branch information
SakuraIsayeki committed Feb 8, 2024
1 parent 4d30fdb commit 5a8c397
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,19 @@ jobs:
uses: Nodsoft/workflows/.github/workflows/build-dotnet.yml@main
with:
dotnet-version: '8.0'
configuration: 'Preview'
configuration: 'Release'
project-file: 'WoWS-Karma.sln'

# Build & Package API & Web from 'build-package-api.yml' and 'build-package-web.yml'.
build-package-api:
name: Build & Package API
needs: build-test-solution
uses: ./.github/workflows/build-package-api.yml
uses: Nodsoft/workflows/.github/workflows/package-dotnet.yml@main
with:
build_configuration: 'Preview'
dotnet-version: '8.0'
configuration: 'Preview'
project-file: 'WowsKarma.Api/WowsKarma.Api.csproj'
artifact-name: 'wowskarma_api'

build-package-web:
name: Build & Package Web App
Expand Down

0 comments on commit 5a8c397

Please sign in to comment.