added more toolchain #46
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Node.js Build and Deploy | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
registry-url: https://registry.npmjs.org/ | |
cache: 'npm' | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | |
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. | |
- name: Create local changes | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
cd docs-source && npm ci && npm run build | |
npm run publish:patch | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |
publish-npm: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
registry-url: https://registry.npmjs.org/ | |
- run: git pull --rebase | |
- run: npm ci | |
- run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
# deploy: | |
# needs: publish-npm | |
# name: Deploy to GitHub Pages | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# with: | |
# fetch-depth: 0 | |
# - uses: actions/setup-node@v4 | |
# with: | |
# node-version: 18 | |
# - name: Install dependencies | |
# run: cd docs-src && npm install | |
# - name: Build docs | |
# run: cd docs-src && npm run build | |
# # Popular action to deploy to GitHub Pages: | |
# # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus | |
# - name: Deploy to GitHub Pages | |
# uses: peaceiris/actions-gh-pages@v3 | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# # Build output to publish to the `gh-pages` branch: | |
# publish_dir: ./docs-src/build | |
# # The following lines assign commit authorship to the official | |
# # GH-Actions bot for deploys to `gh-pages` branch: | |
# # https://github.com/actions/checkout/issues/13#issuecomment-724415212 | |
# # The GH actions bot is used by default if you didn't specify the two fields. | |
# # You can swap them out with your own user credentials. | |
# user_name: github-actions[bot] | |
# user_email: 41898282+github-actions[bot]@users.noreply.github.com |