deleted package-lock.json. added chakra-ui icons. fixed a rendering b… #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and deploy .NET Core application to Function App iomeetingroomapp | |
on: | |
push: | |
branches: | |
- main | |
env: | |
AZURE_FUNCTIONAPP_NAME: iomeetingroomapp | |
AZURE_FUNCTIONAPP_PACKAGE_PATH: backend\IO.MeetinRoomApp\. | |
CONFIGURATION: Release | |
DOTNET_CORE_VERSION: 6.0.x | |
WORKING_DIRECTORY: backend\IO.MeetinRoomApp | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- 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: Publish | |
run: dotnet publish "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}" | |
- name: Publish Artifacts | |
uses: actions/[email protected] | |
with: | |
name: functionapp | |
path: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} | |
deploy: | |
runs-on: windows-latest | |
needs: build | |
steps: | |
- name: Download artifact from build job | |
uses: actions/download-artifact@v2 | |
with: | |
name: functionapp | |
path: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} | |
- name: Deploy to Azure Function App | |
uses: Azure/functions-action@v1 | |
with: | |
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }} | |
publish-profile: ${{ secrets.AZURE_FUNCTIONAPP_PUBLISH_PROFILE }} | |
package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} |