Fix Release export path and I think that's it #12
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
name: Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build Moonwave Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-node@v4.0.3 | |
with: | |
node-version: 20.16.0 | |
- 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 }} |