We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbafaed commit 2ab37dfCopy full SHA for 2ab37df
.github/workflows/ci.yml
@@ -16,6 +16,7 @@ on:
16
env:
17
AZURE_WEBAPP_NAME: DuendeSoftware-Demo # set this to your application's name
18
AZURE_WEBAPP_PACKAGE_PATH: './publish' # set this to the path to your web app project, defaults to the repository root
19
+ DOTNET_VERSION: '8.0.x' # set this to the dot net version to use
20
21
jobs:
22
build-and-deploy:
@@ -28,6 +29,8 @@ jobs:
28
29
# Setup .NET Core SDK
30
- name: Setup .NET Core
31
uses: actions/setup-dotnet@v1
32
+ with:
33
+ dotnet-version: ${{ env.DOTNET_VERSION }}
34
35
# Run dotnet build and publish
36
- name: dotnet build and publish
0 commit comments