fix(deps): update docusaurus monorepo to v3.10.1 (#174) #69
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: Publish | |
| on: | |
| push: | |
| branches: | |
| - source | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - run: npm clean-install | |
| - run: npm run lint | |
| - name: npm run deploy | |
| run: | | |
| git config --global user.email "trygve-lie@users.noreply.github.com" | |
| git config --global user.name "trygve-lie" | |
| echo "machine github.com login trygve-lie password ${{ secrets.GIT_TOKEN }}" > ~/.netrc | |
| npm run deploy | |
| env: | |
| CI: true | |
| GIT_USER: trygve-lie | |
| DEPLOYMENT_BRANCH: main |