Configure Renovate #147
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 | |
on: | |
push: | |
branches: main | |
pull_request: | |
release: | |
types: | |
- published | |
env: | |
# Disable the .NET logo in the console output. | |
DOTNET_NOLOGO: true | |
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build. | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
# Disable sending .NET CLI telemetry to Microsoft. | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
# Set the build number in MinVer. | |
MINVERBUILDMETADATA: build.${{github.run_number}} | |
jobs: | |
build: | |
name: Build-${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: 'Git Fetch Tags' | |
run: git fetch --tags | |
shell: pwsh | |
- name: 'Install .NET Core SDK' | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0 | |
- name: 'Dotnet Tool Restore' | |
run: dotnet tool restore | |
shell: pwsh | |
- name: 'Dotnet Cake Build' | |
run: dotnet cake --target=Build | |
shell: pwsh | |
- name: 'Dotnet Cake Test' | |
run: dotnet cake --target=Test | |
shell: pwsh | |
- name: 'Upload Codecov Coverage' | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: ./Artefacts/coverage | |
- name: 'Dotnet Cake Pack' | |
run: dotnet cake --target=Pack | |
shell: pwsh | |
- name: 'Publish Artefacts' | |
uses: actions/upload-artifact@v1.0.0 | |
with: | |
name: ${{matrix.os}} | |
path: './Artefacts' | |
push-github-packages: | |
name: 'Push GitHub Packages' | |
needs: build | |
if: github.ref == 'refs/heads/main' || github.event_name == 'release' | |
runs-on: windows-latest | |
steps: | |
- name: 'Download Artefact' | |
uses: actions/download-artifact@v1 | |
with: | |
name: 'windows-latest' | |
- name: 'Dotnet NuGet Add Source' | |
run: dotnet nuget add source https://nuget.pkg.github.com/adobe/index.json --name GitHub --username adobe --password ${{secrets.GITHUB_TOKEN}} | |
shell: pwsh | |
- name: 'Dotnet NuGet Push' | |
run: dotnet nuget push .\windows-latest\*.nupkg --api-key ${{ github.token }} --source GitHub --skip-duplicate | |
shell: pwsh | |
push-nuget: | |
name: 'Push NuGet Packages' | |
needs: build | |
if: github.event_name == 'release' | |
runs-on: windows-latest | |
steps: | |
- name: 'Download Artefact' | |
uses: actions/download-artifact@v1 | |
with: | |
name: 'windows-latest' | |
- name: 'Dotnet NuGet Push' | |
run: | | |
Get-ChildItem .\windows-latest -Filter *.nupkg | | |
Where-Object { !$_.Name.Contains('preview') } | | |
ForEach-Object { dotnet nuget push $_ --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} } | |
shell: pwsh |