-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: ibuler <[email protected]>
- Loading branch information
Showing
3 changed files
with
108 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,44 @@ | ||
name-template: 'v$RESOLVED_VERSION' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
categories: | ||
- title: '🌱 新功能 Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- 'feat' | ||
- '新功能' | ||
- title: '🚀 性能优化 Optimization' | ||
labels: | ||
- 'perf' | ||
- 'opt' | ||
- 'refactor' | ||
- 'Optimization' | ||
- '优化' | ||
- title: '🐛 Bug修复 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: '🧰 其它 Maintenance' | ||
labels: | ||
- 'chore' | ||
- 'docs' | ||
exclude-labels: | ||
- 'no' | ||
- '无需处理' | ||
- 'wontfix' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'major' | ||
minor: | ||
labels: | ||
- 'minor' | ||
patch: | ||
labels: | ||
- 'patch' | ||
default: patch | ||
template: | | ||
## 版本变化 What’s Changed | ||
$CHANGES |
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,12 @@ | ||
on: [push, pull_request, release] | ||
|
||
name: JumpServer repos generic handler | ||
|
||
jobs: | ||
generic_handler: | ||
name: Run generic handler | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: jumpserver/action-generic-handler@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PRIVATE_TOKEN }} |
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,52 @@ | ||
on: | ||
push: | ||
# Sequence of patterns matched against refs/tags | ||
tags: | ||
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
|
||
name: Create Release And Upload assets | ||
|
||
jobs: | ||
create-realese: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
outputs: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Get version | ||
id: get_version | ||
run: | | ||
TAG=$(basename ${GITHUB_REF}) | ||
VERSION=${TAG/v/} | ||
echo "::set-output name=TAG::$TAG" | ||
echo "::set-output name=VERSION::$VERSION" | ||
- name: Create Release | ||
id: create_release | ||
uses: release-drafter/release-drafter@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
config-name: release-config.yml | ||
version: ${{ steps.get_version.outputs.VERSION }} | ||
tag: ${{ steps.get_version.outputs.TAG }} | ||
|
||
build-and-release: | ||
needs: create-realese | ||
name: Build and Release | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
os: [linux, darwin] | ||
arch: [amd64] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build it and upload | ||
uses: jumpserver/action-build-upload-assets@golang | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ needs.create-realese.outputs.upload_url }} | ||
os: ${{ matrix.os }} | ||
arch: ${{ matrix.arch }} |