Skip to content

Commit

Permalink
Workflow updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Ismael Triana Artola committed Sep 28, 2023
1 parent 06045a5 commit 9ff5a37
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,11 @@ jobs:
run: dotnet build ./learn-github-actions.sln --configuration Release --no-restore

- name: Publish
run: dotnet publish ./learn-github-actions.sln --configuration Release --no-build
run: dotnet publish ./learn-github-actions.sln --configuration Release --no-build --output '${{ env.AZURE_WEBAPP_PACKAGE_PATH }}'

- name: Deployment
uses: azure/webapps-deploy@v2
with:
app-name: ${{ env.AZURE_WEBAPP_NAME }}
publish-profile: ${{ secrets.AZURE_PUBLISH_PROFILE }}
package: "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}"

0 comments on commit 9ff5a37

Please sign in to comment.