Skip to content

Commit

Permalink
Azure CD
Browse files Browse the repository at this point in the history
  • Loading branch information
AffectedArc07 committed Mar 9, 2024
1 parent 46299ba commit 36a6ddb
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/SS13WebMap.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build and deploy .NET Core application to Web App SS13WebMap
on:
push:
branches:
- next
env:
AZURE_WEBAPP_NAME: SS13WebMap
AZURE_WEBAPP_PACKAGE_PATH: SS13WebMap/published
CONFIGURATION: Release
DOTNET_CORE_VERSION: 6.0.x
WORKING_DIRECTORY: SS13WebMap
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Restore
run: dotnet restore "${{ env.WORKING_DIRECTORY }}"
- name: Build
run: dotnet build "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-restore
- name: Test
run: dotnet test "${{ env.WORKING_DIRECTORY }}" --no-build
- name: Publish
run: dotnet publish "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}"
- name: Deploy to Azure WebApp
uses: azure/webapps-deploy@v2
with:
app-name: ${{ env.AZURE_WEBAPP_NAME }}
publish-profile: ${{ secrets.SS13WebMap_FFFF }}
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
- name: Publish Artifacts
uses: actions/[email protected]
with:
name: webapp
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}

0 comments on commit 36a6ddb

Please sign in to comment.