Skip to content

refine definition of Turst Anchor #153

refine definition of Turst Anchor

refine definition of Turst Anchor #153

name: "Deploy to https://document.smartlayer.network"
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build smart-layer docs
uses: dita-ot/dita-ot-action@master
with:
dita-ot-version: 4.1
plugins: |
fox.jason.extend.css
net.infotexture.dita-bootstrap@5.3.2
fox.jason.favicon
https://github.com/oxygenxml/dita-ot-diagrams-plugin/archive/refs/heads/master.zip
project: config/smartlayer-docsite.yaml
- name: Build smart-layer papers
uses: dita-ot/dita-ot-action@master
with:
dita-ot-version: 4.1
project: config/tokenscript-papers.xml
- uses: actions/upload-artifact@v3
with:
name: docs
path: out/
deploy:
needs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: docs
path: out/
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-1
- name: deploy
env:
S3_BUCKET: smart-layer-docs
CLOUDFRONT_ID: EMSQZ9P16DCKC
run: |
aws s3 sync out/ "s3://${S3_BUCKET}/" --cache-control 'max-age=600,s-maxage=31536000' --quiet --delete \
&& aws cloudfront create-invalidation --distribution-id "${CLOUDFRONT_ID}" --paths '/*'