Skip to content

docs: ADR-024: Decentralized identifiers resolver (#1289) #37

docs: ADR-024: Decentralized identifiers resolver (#1289)

docs: ADR-024: Decentralized identifiers resolver (#1289) #37

Workflow file for this run

name: Deploy docs
# This job builds and deploys documenation to github pages.
# It runs on every push to master with a change in the docs folder.
on:
push:
branches:
- master
paths:
- "docs/**"
- "x/**/*.md"
- .github/workflows/deploy-docs.yml
permissions:
contents: read
jobs:
Build-and-deploy:
permissions:
contents: write # for JamesIves/github-pages-deploy-action to push changes in repo
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
path: "."
- name: Setup Node.js 🔧
uses: actions/setup-node@v4
with:
node-version: "16.x"
cache: 'yarn'
cache-dependency-path: |
docs/yarn.lock
- name: Build 🔧
run: make build-docs
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ~/output
single-commit: true
clean: true
clean-excludes: |
CNAME