Compare commits

...

10 Commits

Author SHA1 Message Date
Marko
5f6dc0502a Merge branch 'master' into marko/bringbackdocs 2022-05-05 16:36:14 +02:00
Marko
ceca73a873 Merge branch 'master' into marko/bringbackdocs 2022-05-02 10:23:23 +02:00
Marko
e31c1e3622 Update .github/workflows/docs.yaml
Co-authored-by: Thane Thomson <connect@thanethomson.com>
2022-05-02 10:23:13 +02:00
M. J. Fromberger
161496bfca Merge branch 'master' into marko/bringbackdocs 2022-05-01 17:16:52 -07:00
M. J. Fromberger
fd3c397c69 Merge branch 'master' into marko/bringbackdocs 2022-04-21 07:31:58 -07:00
M. J. Fromberger
c430624e1b Merge branch 'master' into marko/bringbackdocs 2022-04-18 11:54:04 -07:00
M. J. Fromberger
2a0147515f Merge branch 'master' into marko/bringbackdocs 2022-04-13 16:11:44 -07:00
M. J. Fromberger
44988943ba Merge branch 'master' into marko/bringbackdocs 2022-04-08 18:13:59 -07:00
marbar3778
9089b2aed5 fix comment 2022-04-08 15:49:11 +02:00
marbar3778
5119d16d5c bring back docs deployment 2022-04-08 15:47:50 +02:00

32
.github/workflows/docs.yaml vendored Normal file
View File

@@ -0,0 +1,32 @@
name: Documentation
# This workflow builds the static documentation site, and publishes the results to GitHub Pages.
# It runs on every push to the main branch, with changes in the docs and spec directories
on:
workflow_dispatch: # allow manual updates
push:
branches:
- master
paths:
- "docs/**"
- "spec/**"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
container:
image: tendermintdev/docker-website-deployment
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
run: |
apk add rsync
make build-docs
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: ~/output
single-commit: true