Skip to content

Commit 4b88984

Browse files
committed
chore: new release workflow
1 parent adfe5c4 commit 4b88984

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/ISSUE_TEMPLATE/feature_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
id: feature-description
1111
attributes:
1212
label: Clear and concise description of the problem
13-
description: 'As a developer using Vite I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!'
13+
description: 'As a developer using electron-toolkit I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!'
1414
validations:
1515
required: true
1616
- type: textarea

.github/workflows/release-tag.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
on:
22
push:
33
tags:
4-
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
5-
- 'utils-v*'
6-
- 'tsconfig-v*'
7-
- 'preload-v*'
4+
- 'utils*'
5+
- 'tsconfig*'
6+
- 'preload*'
7+
- 'vue*'
8+
- 'react*'
89

910
name: Create Release
1011

@@ -15,6 +16,11 @@ jobs:
1516
steps:
1617
- name: Checkout code
1718
uses: actions/checkout@master
19+
- name: Get package name for tag
20+
id: tag
21+
run: |
22+
pkgName=${GITHUB_REF_NAME%@*}
23+
echo "::set-output name=pkgName::$pkgName"
1824
- name: Create Release for Tag
1925
id: release_tag
2026
uses: actions/create-release@v1
@@ -24,4 +30,4 @@ jobs:
2430
tag_name: ${{ github.ref }}
2531
release_name: ${{ github.ref }}
2632
body: |
27-
Please refer to [CHANGELOG.md](https://github.com/alex8088/electron-toolkit/blob/${{ github.ref_name }}/CHANGELOG.md) for details.
33+
Please refer to [CHANGELOG.md](https://github.com/alex8088/electron-toolkit/blob/${{ github.ref_name }}/packages/${{ steps.tag.outputs.pkgName }}/CHANGELOG.md) for details.

0 commit comments

Comments
 (0)