Skip to content

Fixed search and added FirstName and LastName to be searched on too. #74

Fixed search and added FirstName and LastName to be searched on too.

Fixed search and added FirstName and LastName to be searched on too. #74

Workflow file for this run

# name: Build and deploy .NET Core application to Web App Geesemon
# on:
# push:
# branches:
# - master
# env:
# AZURE_WEBAPP_NAME: Geesemon
# AZURE_WEBAPP_PACKAGE_PATH: Geesemon.Web\published
# CONFIGURATION: Release
# DOTNET_CORE_VERSION: 6.0.x
# WORKING_DIRECTORY: Geesemon.Web
# jobs:
# build:
# runs-on: windows-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.Geesemon_FFFF }}
# package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
# - name: Publish Artifacts
# uses: actions/upload-artifact@v1.0.0
# with:
# name: webapp
# path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}