Link the MD tutorial from the main tutorials page #60
This file contains hidden or 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: Build and Deploy | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install NVM and Node.js 21 | |
| run: | | |
| export NVM_DIR="$HOME/.nvm" | |
| mkdir -p $NVM_DIR | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
| nvm install 21 | |
| nvm use 21 | |
| node -v | |
| npm -v | |
| - name: Install dependencies | |
| run: | | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
| nvm use 21 | |
| npm install | |
| - name: Build project | |
| run: | | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
| nvm use 21 | |
| npm run docs:build | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v4 | |
| # If you're changing the branch from main, | |
| # also change the `main` in `refs/heads/main` | |
| # below accordingly. | |
| if: github.ref == 'refs/heads/main' | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: docs/.vuepress/dist | |
| cname: stormm.psivant.com |