Add LICENSE and NOTICE.txt/NOTICE_binary to published jars #126
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: Dependency and License Scan | |
on: | |
push: | |
branches: | |
- '4.x' | |
- '3.x' | |
paths-ignore: | |
- 'manual/**' | |
- 'faq/**' | |
- 'upgrade_guide/**' | |
- 'changelog/**' | |
jobs: | |
scan-repo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install Fossa CLI | |
run: | | |
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash -s -- -b . | |
- name: Scan for dependencies and licenses | |
run: | | |
FOSSA_API_KEY=${{ secrets.FOSSA_PUSH_ONLY_API_KEY }} ./fossa analyze |