Skip to content

Commit

Permalink
chore(workflows): 添加 Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Light authored and Light committed Jul 8, 2022
1 parent 7923696 commit 07032e3
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/scripts/tag-changelog-config.js
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'],
};
62 changes: 62 additions & 0 deletions .github/workflows/build-release.yml
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

0 comments on commit 07032e3

Please sign in to comment.