40个版本 (16个重大更新)
新 0.18.0 | 2024年8月18日 |
---|---|
0.16.2 | 2024年4月14日 |
0.16.1 | 2024年3月24日 |
0.13.3 | 2023年12月17日 |
0.2.0 | 2022年3月26日 |
#84 in 开发工具
每月336次下载
305KB
8K SLoC
Knape
一个命令行工具,愉快地完成大多数开发者认为繁琐的任务。
示例:自动化GitHub Actions发布
有一些常规提交吗?
feat: A spicy feature
fix: Some sauce
和一些变更集?
---
my-package: major
---
#### Big deal
You probably want to read this before upgrading 💜
你想手动发布吗?Knape!这是一个GitHub Actions工作流程
name: Drop a new version
on: workflow_dispatch
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- uses: knope-dev/action@v1 # Install Knope
with:
version: 0.7.4
- run: knope release
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
你将获得一个GitHub发布和一个变更日志,根据语义版本来选择,基于常规提交和变更集的组合。
## 2.0.0
### Breaking Changes
#### Big deal
You probably want to read this before upgrading 💜
### Features
#### A spicy feature
### Fixes
#### Some sauce
通过一些定制,Knape可以做更多的事情,更多信息请阅读文档。
依赖项
~30–45MB
~786K SLoC