We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f4adca commit b6a218bCopy full SHA for b6a218b
1 file changed
.github/workflows/cicd.yml
@@ -28,9 +28,9 @@ jobs:
28
# Run dotnet build and publish
29
- name: dotnet build and publish
30
run: |
31
- dotnet restore
32
- dotnet build --configuration Release
33
- dotnet publish -c Release --property:PublishDir='${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/publish'
+ dotnet restore ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/webapp01.csproj
+ dotnet build --configuration Release ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/webapp01.csproj
+ dotnet publish -c Release --property:PublishDir='${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/publish' ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/webapp01.csproj
34
35
- name: Azure Login
36
uses: azure/login@v2
0 commit comments