Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows … #80
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: 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/[email protected] | |
- 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" |