File tree Expand file tree Collapse file tree 1 file changed +3
-26
lines changed Expand file tree Collapse file tree 1 file changed +3
-26
lines changed Original file line number Diff line number Diff line change 1
- name : Create Release
1
+ name : Release
2
2
3
3
on :
4
4
push :
@@ -17,35 +17,12 @@ jobs:
17
17
uses : actions/checkout@v4
18
18
with :
19
19
fetch-depth : 0
20
- # Extract the version from the tag
20
+
21
21
- name : Set version from tag
22
22
id : set_version
23
23
run : |
24
24
VERSION=${GITHUB_REF#refs/tags/}
25
25
echo "::set-output name=version::$VERSION"
26
- - name : Get previous tag
27
- id : prev_tag
28
- run : |
29
- PREV_TAG=$(git describe --tags --abbrev=0 HEAD^1)
30
- echo "::set-output name=prev_tag::$PREV_TAG"
31
-
32
- # - name: Get closed PRs
33
- # id: closed_prs
34
- # uses: actions/github-script@v6
35
- # with:
36
- # github-token:
37
- # script: |
38
- # const prs = await github.paginate(github.pulls.list, {
39
- # owner: context.repo.owner,
40
- # repo: context.repo.repo,
41
- # state: 'closed',
42
- # sort: 'updated',
43
- # direction: 'desc',
44
- # per_page: 100
45
- # });
46
- # const closedPRs = prs.filter(pr => pr.merged_at && new Date(pr.merged_at) > new Date(context.payload.commits[0].timestamp));
47
- # const prList = closedPRs.map(pr => `- ${pr.title} (#${pr.number})`).join("\n");
48
- # core.setOutput("pr_list", prList);
49
26
50
27
- name : Install PowerShell
51
28
run : |
77
54
with :
78
55
draft : false
79
56
prerelease : false
80
- release_name : Release ${{ steps.set_version.outputs.version }}
57
+ release_name : QLC+ ${{ steps.set_version.outputs.version }}
81
58
tag_name : ${{ github.ref }}
82
59
body : |
83
60
##
You can’t perform that action at this time.
0 commit comments