feat: Add UseFeatureFlags to azureAppConfig #101
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: DotNet Deploy to Webapp | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "8.0.x" | |
# Build artifact | |
- name: Build Artifact | |
run: bash build.sh --test --artifact | |
# Deploy to Azure Web apps | |
- name: "Run Azure webapp deploy action using publish profile credentials" | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: chewie-webapp-ld2ijhpvmb34c | |
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} # Define secret variable in repository settings as per action documentation | |
package: "./artifacts/chewbacca.zip" |