diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..03a9fa7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,87 @@ +name: CI +on: + push: + branches: + - master + +jobs: + build-deploy: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 14 + + - run: npm install + - run: npm run hoist + + - run: npm i markdown-to-html-cli -g + - run: mkdir -p build + - run: markdown-to-html --output build/index.html + + - 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@v1.3.6 + with: + package-path: core/package.json + + - name: get tag version + id: tag_version + uses: jaywcjlove/changelog-generator@v1.5.0 + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + 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@v1.5.0 + 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 }} + + - uses: JS-DevTools/npm-publish@v1 + with: + token: ${{ secrets.NPM_TOKEN }} + package: core/package.json \ No newline at end of file