Skip to content

Merge pull request #541 from Green-Software-Foundation/Changelog-1.5 #146

Merge pull request #541 from Green-Software-Foundation/Changelog-1.5

Merge pull request #541 from Green-Software-Foundation/Changelog-1.5 #146

# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions
name: 2.a-Build and deploy ASP.Net Core app to Azure Web App - carbon-aware-api
on:
push:
branches:
- dev
workflow_dispatch:
jobs:
build:
if: github.repository == 'Green-Software-Foundation/carbon-aware-sdk' || vars.ENABLE_WEBAPP_WORKFLOW == 'true'
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
include-prerelease: true
- name: Build with dotnet
working-directory: src/CarbonAware.WebApi/src
run: dotnet build --configuration Release
- name: dotnet publish
working-directory: src/CarbonAware.WebApi/src
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v2
with:
name: CarbonAwareApi
path: ${{env.DOTNET_ROOT}}/myapp
deploy:
runs-on: windows-latest
needs: build
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v2
with:
name: CarbonAwareApi
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'carbon-aware-api'
slot-name: 'Production'
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_D9BE266F4F034E79818711107BC7DDC5 }}
package: .