skip to Main Content

How to fix Github Actions dotnet publish workflow error: The "–output" option isn't supported when building a solution – Ubuntu

Something changed in the way the dotnet publish workflow task works. We've been using this pretty straightforward yaml script for some time now. name: Publish to staging server env: AZURE_WEBAPP_NAME: 'my-dotnet-webapp' AZURE_SLOT_NAME: 'staging' GITHUB_PUBLISH_SECRET: ${{ secrets.AZURE_DEPLOYMENTSLOT_STAGING }} AZURE_WEBAPP_PACKAGE_PATH: '.' DOTNET_VERSION:…

VIEW QUESTION
Back To Top
Search