Commit 606254c
committed
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.1 parent 8238f46 commit 606254c
1 file changed
+48
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
0 commit comments