Skip to content

Commit

Permalink
chore: update workflows config.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jun 3, 2021
1 parent 0fba0d5 commit 2d4e0a4
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,49 +7,46 @@ jobs:
build-deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master

- name: Setup Node
uses: actions/setup-node@v1
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '10.x'
node-version: 14

- run: npm install
- run: npm run build
- run: npm run test

- name: Create Tag
id: create_tag
uses: jaywcjlove/create-tag-action@v1.1.7
uses: jaywcjlove/create-tag-action@v1.1.10
with:
token: ${{ secrets.GITHUB_TOKEN }}
package-path: ./package.json

- name: Generate Changelog
id: changelog
uses: jaywcjlove/changelog-generator@v1.3.9
uses: jaywcjlove/changelog-generator@v1.3.10
with:
token: ${{ secrets.GITHUB_TOKEN }}
head-ref: ${{steps.create_tag.outputs.version}}
filter-author: (jaywcjlove|小弟调调™|dependabot\[bot\]|Renovate Bot)
filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'

- name: Create Release
id: create_release
uses: actions/create-release@latest
uses: ncipollo/release-action@v1
if: steps.create_tag.outputs.successful
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.create_tag.outputs.version }}
release_name: ${{ steps.create_tag.outputs.version }}
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ steps.create_tag.outputs.version }}
tag: ${{ steps.create_tag.outputs.version }}
body: |
[![](https://img.shields.io/github/issues/uiwjs/babel-plugin-transform-remove-imports.svg)](https://github.com/uiwjs/babel-plugin-transform-remove-imports/releases) [![](https://img.shields.io/github/forks/uiwjs/babel-plugin-transform-remove-imports.svg)](https://github.com/uiwjs/babel-plugin-transform-remove-imports/network) [![](https://img.shields.io/github/stars/uiwjs/babel-plugin-transform-remove-imports.svg)](https://github.com/uiwjs/babel-plugin-transform-remove-imports/stargazers) [![](https://img.shields.io/github/release/uiwjs/babel-plugin-transform-remove-imports.svg)](https://github.com/uiwjs/babel-plugin-transform-remove-imports/releases)
[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/babel-plugin-transform-remove-imports@${{steps.create_tag.outputs.versionNumber}}/file/README.md) [![](https://img.shields.io/github/issues/uiwjs/babel-plugin-transform-remove-imports.svg)](https://github.com/uiwjs/babel-plugin-transform-remove-imports/releases) [![](https://img.shields.io/github/forks/uiwjs/babel-plugin-transform-remove-imports.svg)](https://github.com/uiwjs/babel-plugin-transform-remove-imports/network) [![](https://img.shields.io/github/stars/uiwjs/babel-plugin-transform-remove-imports.svg)](https://github.com/uiwjs/babel-plugin-transform-remove-imports/stargazers) [![](https://img.shields.io/github/release/uiwjs/babel-plugin-transform-remove-imports.svg)](https://github.com/uiwjs/babel-plugin-transform-remove-imports/releases) [![npm bundle size](https://img.shields.io/bundlephobia/minzip/babel-plugin-transform-remove-imports)](https://bundlephobia.com/result?p=babel-plugin-transform-remove-imports@${{steps.create_tag.outputs.versionNumber}})
```bash
npm i install babel-plugin-transform-remove-imports@${{steps.create_tag.outputs.versionNumber}}
```
${{ steps.changelog.outputs.compareurl }}
${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down

0 comments on commit 2d4e0a4

Please sign in to comment.