OPSEXP-4226 Only wire SOLR_SECRET for the Community profile, and test it in CI #474
Workflow file for this run
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: Publish docs | |
| permissions: | |
| contents: write | |
| pages: write | |
| id-token: write | |
| on: | |
| release: | |
| types: | |
| - released | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "docs/**" | |
| - ".github/workflows/docs.yml" | |
| - Gemfile | |
| - Gemfile.lock | |
| - .ruby-version | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - "docs/**" | |
| - ".github/workflows/docs.yml" | |
| - Gemfile | |
| - Gemfile.lock | |
| - .ruby-version | |
| jobs: | |
| publish: | |
| uses: Alfresco/jekyll-build-tools/.github/workflows/jekyll-publish.yml@v0.4.0 | |
| with: | |
| # we are using the root to also include the autogenerated helm-docs | |
| working-directory: . | |
| publish: ${{ github.event_name != 'pull_request' }} | |
| validate-html: true | |
| validate-html-args: --ignore-status-codes 429 |