Update README with new logo and project details #40
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: Deploy documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request_target: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| build-only: | |
| if: github.event_name == 'pull_request_target' | |
| uses: scilus/nf-mouse-documentation/.github/workflows/deploy.yml@main | |
| with: | |
| deploy: false | |
| secrets: inherit | |
| build-and-deploy: | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| uses: scilus/nf-mouse-documentation/.github/workflows/deploy.yml@main | |
| with: | |
| deploy: true | |
| secrets: inherit |