Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Actions workflow for .NET Core Azure deployment
Introduce a GitHub Actions workflow to build and deploy the .NET Core application "MalfuzatExplorer" to an Azure Web App. The workflow is triggered by a push to the `master` branch and includes environment variable setup for the Azure Web App name, package path, build configuration, .NET Core version, and working directory. The workflow consists of two jobs: - `build`: Runs on the latest Windows environment, checks out the repository, sets up the .NET SDK, restores dependencies, builds the application, runs tests, publishes the application, and uploads the artifacts. - `deploy`: Depends on the `build` job, runs on the latest Windows environment, downloads the build artifacts, and deploys the application to the Azure Web App using a publish profile stored in GitHub Secrets.
- Loading branch information