refactor: Remove vitepress as deps #199
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: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
if: ${{ startsWith(github.event.head_commit.message, 'chore(release)') }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.sha }} | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.2.0 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install | |
run: | | |
pnpm install | |
env: | |
CI: true | |
- name: Build | |
run: | | |
pnpm --parallel build:type | |
pnpm --parallel build:cjs | |
pnpm --parallel build:esm | |
pnpm --parallel build:browser | |
- name: Publish | |
run: | | |
pnpm -r publish --access public --no-git-checks | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
- name: Publish Tag | |
run: | | |
node --eval "console.log(JSON.parse(require('fs').readFileSync('package.json').toString()).version)" > tag.log | |
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/voxelum/minecraft-launcher-core-node.git" | |
git config user.name ci010 | |
git config user.email [email protected] | |
git tag -f $(cat tag.log) | |
git push origin tag $(cat tag.log) -f | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Docs | |
run: | | |
pnpm build:docs | |
- name: Deploy to Github Pages | |
uses: crazy-max/ghaction-github-pages@v1 | |
with: | |
target_branch: gh-pages | |
build_dir: docs/ | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_PAT }} |