-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Light
authored and
Light
committed
Jul 8, 2022
1 parent
7923696
commit 07032e3
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
module.exports = { | ||
types: [ | ||
{ | ||
types: ['feat', 'feature'], | ||
label: '新功能', | ||
}, | ||
{ | ||
types: ['fix', 'bugfix'], | ||
label: '问题修复', | ||
}, | ||
{ | ||
types: ['perf'], | ||
label: '优化', | ||
}, | ||
{ | ||
types: ['refactor'], | ||
label: '重构', | ||
}, | ||
{ | ||
types: ['build', 'ci'], | ||
label: '构建', | ||
}, | ||
], | ||
excludeTypes: ['other', 'docs', 'style', 'test', 'chore'], | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: build-release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout/@v3 | ||
- name: Set Up Python 3.9 | ||
uses: actions/setup-python/@v3 | ||
with: | ||
python-version: '3.9' | ||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
- name: Read Aum Name | ||
id: aum_name | ||
uses: ashley-taylor/read-json-property-action@v1.0 | ||
with: | ||
path: ./src/INFO | ||
property: name | ||
- name: Read Aum Version | ||
id: aum_version | ||
uses: ashley-taylor/read-json-property-action@v1.0 | ||
with: | ||
path: ./src/INFO | ||
property: version | ||
- name: Build Package | ||
run: python build.py -z | ||
- name: Create ChangeLog Text | ||
id: changelog_text | ||
uses: loopwerk/tag-changelog@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
config_file: .github/scripts/tag-changelog-config.js | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
body: ${{ steps.changelog_text.outputs.changes }} | ||
draft: false | ||
prerelease: false | ||
- name: Upload Release Asset | ||
id: upload_release_asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./build/${{ steps.aum_name.outputs.value }}_v${{ steps.aum_version.outputs.value }}.zip | ||
asset_name: ${{ steps.aum_name.outputs.value }}_v${{ steps.aum_version.outputs.value }}.zip | ||
asset_content_type: application/zip |