Revert "chore(deps): update codecov/codecov-action action to v4 (#67)" #81
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 | |
on: | |
push: | |
branches: | |
- "main" | |
tags: | |
- "v*" | |
pull_request: | |
branches: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: π Build & Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v4 | |
- name: β Restore | |
run: dotnet restore | |
- name: π Build | |
run: dotnet build --no-restore -c Release -p:ContinuousIntegrationBuild=true | |
- name: π§ͺ Run tests | |
run: dotnet test --no-build -c Release | |
- name: β’ Publish to Codecov | |
uses: codecov/codecov-action@v3 | |
- name: π Pack Dev NuGet artifacts | |
if: github.ref == 'refs/heads/main' | |
run: dotnet pack --no-build -c Release --version-suffix dev-$(date +%s)-${GITHUB_SHA::7} | |
- name: π Pack NuGet artifacts | |
if: startsWith(github.ref, 'refs/tags/v') | |
run: dotnet pack --no-build -c Release | |
- name: π€ Upload artifacts | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nupkgs | |
path: src/**/*nupkg | |
github: | |
name: π Deploy to GitHub | |
needs: [build] | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: π₯ Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: nupkgs | |
- name: π¦ Publish to GitHub | |
run: dotnet nuget push "**/*.nupkg" -s https://nuget.pkg.github.com/phnx47/index.json -k ${{ secrets.GH_PKG_PAT }} --skip-duplicate | |
nuget: | |
name: π Deploy to NuGet | |
needs: [build] | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: π₯ Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: nupkgs | |
- name: π¦ Publish to NuGet | |
run: dotnet nuget push "**/*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json | |
benchmarks: | |
name: π Benchmarks | |
if: github.event_name != 'push' | |
runs-on: ubuntu-22.04 | |
permissions: | |
pull-requests: write | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v4 | |
- name: β Restore | |
run: dotnet restore | |
- name: π Build | |
run: dotnet build --no-restore -c Release | |
- name: π Run all benchmarks | |
working-directory: tests/benchmarks | |
run: dotnet run -c Release -- -f * | |
- name: π Add summary | |
working-directory: tests/benchmarks/BenchmarkDotNet.Artifacts/results | |
run: cat FingerprintBuilder.BenchmarkTests.ModelToHex-report-github.md >> $GITHUB_STEP_SUMMARY | |
- name: π¬ Add PR comment | |
uses: marocchino/sticky-pull-request-comment@v2 | |
if: github.event_name == 'pull_request' | |
with: | |
recreate: true | |
path: tests/benchmarks/BenchmarkDotNet.Artifacts/results/FingerprintBuilder.BenchmarkTests.ModelToHex-report-github.md |