forked from cosmos/ibc-go
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add back docs deploymeent to main repo (cosmos#2196)
Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com> Co-authored-by: Carlos Rodriguez <carlos@interchain.io> Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>
- Loading branch information
1 parent
868c52a
commit 5e370c9
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Deploy docs | ||
# This job builds and deploys documenation to github pages. | ||
# It runs on every push to main with a change in the docs folder. | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- "release/**" | ||
paths: | ||
- "docs/**" | ||
- .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 | ||
container: | ||
image: ghcr.io/cosmos/website-deployment | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
path: "." | ||
|
||
- name: Build 🔧 | ||
run: | | ||
make build-docs LEDGER_ENABLED=false | ||
- name: Deploy 🚀 | ||
uses: JamesIves/github-pages-deploy-action@v4.4.0 | ||
with: | ||
branch: gh-pages | ||
folder: ~/output | ||
single-commit: true |