Skip to content

Update to latest HtmlSanitizer (#65) #79

Update to latest HtmlSanitizer (#65)

Update to latest HtmlSanitizer (#65) #79

Workflow file for this run

name: CI (main)
on:
push:
branches: [main]
paths-ignore:
- "**/*.md"
- "**/*.gitignore"
- "**/*.gitattributes"
workflow_dispatch:
jobs:
build:
name: Build & Test
uses: ./.github/workflows/_build.yml
with:
packShipCandidate: true
deploy:
name: Deploy NuGet package to repo artifacts & sample site to Azure
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
- name: Add GitHub Package Repository source
run: dotnet nuget add source --username ${{ secrets.GPR_USERNAME }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name GPR ${{ secrets.GPR_URI }}
- name: Push to GitHub Packages
run: dotnet nuget push **/ci/*.nupkg -s "GPR" --skip-duplicate
- name: Delete old packages
uses: smartsquaregmbh/[email protected]
with:
keep: 5
names: TagHelperPack
# Deploy to Azure Web apps
- name: Deploy sample site to Azure
uses: azure/webapps-deploy@v2
with:
app-name: ${{ secrets.AZURE_WEBAPP_NAME }}
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
package: "**/samplesite"