Skip to content

feat: rewriteHTML config #12

feat: rewriteHTML config

feat: rewriteHTML config #12

Workflow file for this run

name: Release
on:
push:
tags:
- v*.*.*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: https://registry.npmjs.org
- name: Determine npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: Restore npm cache
uses: actions/cache@v3
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Npm Install
run: |
npm install pnpm@7.9.3 -g
pnpm install
- name: Version
id: version
run: |
tag=${GITHUB_REF/refs\/tags\//}
version=${tag#v}
echo "::set-output name=version::${version}"
- name: Build # build npm
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
run: |
npm run build -- ${{ steps.version.outputs.version }}
git config --global user.email "1506282385@qq.com"
git config --global user.name "theajack"
git checkout master
git add .
git commit -m "CI: push v${{ steps.version.outputs.version }}"
git push
- name: Build Docs
run: npm run build:docs -- ${{ steps.version.outputs.version }}
- name: Pages # github pages
uses: JamesIves/github-pages-deploy-action@v4.3.0
with:
branch: gh-pages
folder: docs
- name: Release # release
uses: release-drafter/release-drafter@v5
with:
version: ${{ steps.version.outputs.version }}
publish: true
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- name: Publish # npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
run: |
cd npm
npm publish
- name: Purge # purge cdn
run: npm run purge