[DOCS-7934] Add quotation marks to search terms #4929
Workflow file for this run
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: Sandbox | |
on: | |
push: | |
branches-ignore: | |
- master | |
paths-ignore: | |
- '.github/**' | |
env: | |
AWS_DEFAULT_REGION: us-east-1 | |
BUCKET_NAME: ${{ secrets.SANDBOX_BUCKET_NAME }} | |
DISTRIBUTION_ID: ${{ secrets.SANDBOX_DISTRIBUTION_ID }} | |
RUNNER_ROLE: ${{ secrets.EAD_PRODUCTION_RUNNER_ROLE }} | |
RUNNER_EXTERNAL_ID: ${{ secrets.EAD_PROD_RUNNER_EXTERNAL_ID }} | |
jobs: | |
Publish: | |
runs-on: self-hosted | |
if: ${{ github.repository }} == 'Alfresco/docs-alfresco' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: AWS Assume Role | |
uses: ./.github/actions/assume_role | |
- name: Run Jekyll Build | |
uses: ./.github/actions/jekyll_build | |
env: | |
JEKYLL_CONFIG: _config.yml | |
- name: Run S3 Sync | |
uses: ./.github/actions/s3_sync | |