Skip to content

Merge pull request #478 from Quenty/users/quenty/all_changes #199

Merge pull request #478 from Quenty/users/quenty/all_changes

Merge pull request #478 from Quenty/users/quenty/all_changes #199

Workflow file for this run

name: publish-docs
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build and deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
- run: npm i -g moonwave@latest
- name: Publish
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
git config --global user.email "support+actions@github.com"
git config --global user.name "github-actions-bot"
moonwave build --publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}