Skip to content

DOC-2318: Fix skip_focus check to the ToggleToolbarDrawer command… #164

DOC-2318: Fix skip_focus check to the ToggleToolbarDrawer command…

DOC-2318: Fix skip_focus check to the ToggleToolbarDrawer command… #164

Workflow file for this run

name: Release > Tiny 6 Docs
on:
workflow_dispatch:
push:
paths:
- '**'
branches:
- 'release/docs-6'
jobs:
build:
name: Build Docs and Deploy
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [21]
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v2
with:
cache: 'yarn'
node-version: ${{ matrix.node-version }}
- name: (Release - Docs 6) Install dependencies
run: yarn install
- name: (Release - Docs 6) Build API References
run: yarn build
- name: (Release - Docs 6) Build Website
run: yarn antora ./antora-playbook-prod.yml
- name: (deploy) Upload site to S3
run: aws s3 sync --acl=public-read --delete ./build/site s3://tiny-cloud-antora-docs-production/docs --exclude '*' --include 'tinymce/6/*'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.PRODUCTION_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.PRODUCTION_AWS_SECRET_ACCESS_KEY }}
AWS_EC2_METADATA_DISABLED: true
- name: (deploy) Upload images to S3
run: aws s3 sync --acl=public-read ./build/site/_ s3://tiny-cloud-antora-docs-production/docs/_ --exclude '*' --include 'img'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.PRODUCTION_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.PRODUCTION_AWS_SECRET_ACCESS_KEY }}
AWS_EC2_METADATA_DISABLED: true
- name: (deploy) Invalidate Cache
run: aws cloudfront create-invalidation --distribution-id E3LFU502SQ5UR --paths "/docs/*"
env:
AWS_ACCESS_KEY_ID: ${{ secrets.PRODUCTION_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.PRODUCTION_AWS_SECRET_ACCESS_KEY }}
AWS_EC2_METADATA_DISABLED: true