ci(action): update actions/upload-artifact action to v4.4.0 (#563) #1430
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 | |
workflow_dispatch: | |
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}} | |
permissions: {} | |
jobs: | |
build: | |
name: Build-${{matrix.os}} | |
permissions: | |
contents: read | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macOS-latest ] | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: 'Install .NET Core SDK' | |
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1 | |
with: | |
dotnet-version: | | |
6.0.x | |
8.0.x | |
- 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: 'Dotnet Cake Pack' | |
run: dotnet cake --target=Pack | |
shell: pwsh | |
- name: 'Publish artifacts' | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: ${{matrix.os}} | |
path: './artifacts' | |
push-github-packages: | |
name: 'Push GitHub Packages' | |
needs: build | |
if: github.ref == 'refs/heads/main' || github.event_name == 'release' | |
environment: | |
name: 'GitHub Packages' | |
url: https://github.com/octokit/webhooks.net/packages | |
permissions: | |
packages: write | |
runs-on: windows-latest | |
steps: | |
- name: 'Download artifact' | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: 'windows-latest' | |
- name: 'Dotnet NuGet Add Source' | |
run: dotnet nuget add source https://nuget.pkg.github.com/octokit/index.json --name GitHub --username octokit --password ${{secrets.GITHUB_TOKEN}} | |
shell: pwsh | |
- name: 'Dotnet NuGet Push' | |
run: dotnet nuget push .\*.nupkg --api-key ${{ github.token }} --source GitHub --skip-duplicate | |
shell: pwsh | |
push-nuget: | |
name: 'Push NuGet Packages' | |
needs: build | |
if: github.event_name == 'release' | |
environment: | |
name: 'NuGet' | |
url: https://www.nuget.org/packages/Octokit.Webhooks | |
runs-on: windows-latest | |
steps: | |
- name: 'Download artifact' | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: 'windows-latest' | |
- name: 'Dotnet NuGet Push' | |
run: | | |
Get-ChildItem .\ -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 |