Skip to content

Merge pull request #4 from prooheckcp/Version-0-1-2 #6

Merge pull request #4 from prooheckcp/Version-0-1-2

Merge pull request #4 from prooheckcp/Version-0-1-2 #6

Workflow file for this run

name: Docs
on:
push:
branches: [main]
jobs:
publish:
name: Public and Deploy the docs of our project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
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 "[email protected]"
git config --global user.name "github-actions-bot"
moonwave build --publish --code RoQuest
env:
GITHUB_TOKEN: ${{ secrets.MOONWAVE_TOKEN }}