ci: update workflows config. #39
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: CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
- run: npm install | |
- run: npm run build | |
- run: npm install | |
- name: Create idoc config. | |
working-directory: core | |
run: | | |
cat > idoc.yml << EOF | |
site: "NCC {{version}}" | |
menus: | |
Home: index.html | |
KKT: https://kktjs.github.io/kkt/ | |
Create-KKT: https://kktjs.github.io/create-kkt/ | |
Zip: https://kktjs.github.io/zip/ | |
EOF | |
- run: npm install [email protected] -g | |
- run: idoc | |
working-directory: core | |
- run: mkdir -p build | |
- run: cp -rp core/dist/* ./build | |
- name: Generate Contributors Images | |
uses: jaywcjlove/github-action-contributors@main | |
with: | |
filter-author: (renovate\[bot\]|renovate-bot|dependabot\[bot\]) | |
output: build/CONTRIBUTORS.svg | |
avatarSize: 42 | |
- name: examples @template/bundle | |
working-directory: examples/bundle | |
run: npm run build && npm run bundle && npm run bundle:min | |
- name: examples @template/bundle-node | |
working-directory: examples/bundle-node | |
run: npm run bundle && npm run bundle:min | |
- name: Create Tag | |
id: create_tag | |
uses: jaywcjlove/create-tag-action@main | |
with: | |
package-path: core/package.json | |
- name: get tag version | |
id: tag_version | |
uses: jaywcjlove/changelog-generator@main | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' | |
commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |
- name: Generate Changelog | |
id: changelog | |
uses: jaywcjlove/changelog-generator@main | |
with: | |
head-ref: ${{steps.create_tag.outputs.version}} | |
filter-author: (小弟调调™|Renovate Bot) | |
filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}' | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
if: steps.create_tag.outputs.successful | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: ${{ steps.changelog.outputs.tag }} | |
tag: ${{ steps.changelog.outputs.tag }} | |
body: | | |
[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@kkt/ncc@${{steps.changelog.outputs.version}}/file/README.md) [![npm version](https://img.shields.io/npm/v/@kkt/ncc.svg)](https://www.npmjs.com/package/kkt) | |
Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/kktjs/ncc/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html | |
Comparing Changes: ${{ steps.changelog.outputs.compareurl }} | |
```bash | |
npm i @kkt/ncc@${{steps.changelog.outputs.version}} | |
``` | |
${{ steps.changelog.outputs.compareurl }} | |
${{ steps.changelog.outputs.changelog }} | |
- run: npm publish --access public --provenance | |
name: 📦 @kkt/ncc publish to NPM | |
continue-on-error: true | |
working-directory: core | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |