Skip to content

Disabled linting action & updated docs action #1

Disabled linting action & updated docs action

Disabled linting action & updated docs action #1

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
jobs:
build:
name: Build and deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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:${TOKEN}@github.com/re-sync-dev/Flux.git
git config --global user.email "[email protected]"
git config --global user.name "github-actions-bot"
moonwave build --publish --code ./src
env:
TOKEN: ${{ secrets.TOKEN }}