Skip to content

Commit

Permalink
Merge branch 'main' of github.com:butaneprotocol/translucent-core
Browse files Browse the repository at this point in the history
  • Loading branch information
micahkendall committed Apr 14, 2024
2 parents 07a7747 + a06eef0 commit 76106b8
Show file tree
Hide file tree
Showing 2 changed files with 454 additions and 3,637 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "docs"

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run docs
- uses: actions/upload-pages-artifact@v2
with:
path: ./docs
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
Loading

0 comments on commit 76106b8

Please sign in to comment.