Skip to content

Commit

Permalink
updated dotnet version in the workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
ddjerqq committed Dec 27, 2024
1 parent 1f5d8ef commit c375e84
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-gh-pages.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Build and Deploy

on:
push:
branches: [ "master" ]
# push:
# branches: [ "master" ]
workflow_dispatch:

env:
NETCORE_VERSION: "8.0.x"
NETCORE_VERSION: "9.0.x"
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
SRC: "/home/runner/work/klean/klean/src/src"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish-to-nuget-on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
release:
types: [published]

env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
NETCORE_VERSION: '9.0.x'

jobs:
build-and-publish:
concurrency: ci-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ "master" ]

env:
NETCORE_VERSION: '8.0.x'
NETCORE_VERSION: '9.0.x'

jobs:
build-and-test:
Expand Down

0 comments on commit c375e84

Please sign in to comment.