updated another flow chart #117
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: "Deploy to https://document.smartlayer.network" | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build smart-layer docs | |
uses: dita-ot/dita-ot-action@master | |
with: | |
plugins: | | |
fox.jason.extend.css | |
net.infotexture.dita-bootstrap | |
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: | |
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@v2 | |
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 '/*' |