Generate changelog / Add third-party notices for bundled AsmResolver, drop host-provided assemblies (#3250) The weaver task's dependencies are packed into tasks/netstandard2.0 of both BenchmarkDotNet.Weaver and BenchmarkDotNet.Annotations, so AsmResolver's binaries are redistributed to every consumer with no dependency edge and no MIT notice. Add THIRD-PARTY-NOTICES.txt next to the weaver and pack it at the root of the Annotations package, which is the one that ships standalone. CopyLocalLockFileAssemb... #602
This file contains hidden or 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: generate-changelog | |
| run-name: Generate changelog / ${{ github.event.head_commit.message }} | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| permissions: write-all | |
| jobs: | |
| generate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| ref: master | |
| - name: Checkout changelog | |
| uses: actions/checkout@v7 | |
| with: | |
| ref: docs-changelog | |
| path: docs/_changelog | |
| - name: Fetch changelog | |
| run: ./build.cmd docs-fetch --depth 1 --preview | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Push changelog | |
| uses: JamesIves/github-pages-deploy-action@d92aa235d04922e8f08b40ce78cc5442fcfbfa2f # v4.8.0 | |
| with: | |
| branch: docs-changelog | |
| folder: docs/_changelog | |
| git-config-name: Andrey Akinshin | |
| git-config-email: andrey.akinshin@gmail.com | |
| clean: true |