Skip to content

Commit 49bd2b1

Browse files
committed
fix
1 parent 39354bc commit 49bd2b1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
awk -v ver="${{ steps.read_version.outputs.version }}" '
4949
/^## / {
5050
if (found) exit
51-
if ($0 ~ "^## " ver "( |$)" ) { found=1; print; next }
51+
if ($0 ~ "^## " ver "( |$)" ) { found=1; next }
5252
next
5353
}
5454
found { print }
@@ -93,14 +93,14 @@ jobs:
9393
run: mv code.editor.fpk code.editor.arm.fpk
9494

9595
# 发布文件
96-
# - name: Release
97-
# uses: ncipollo/release-action@v1.20.0
98-
# with:
99-
# tag: v${{ steps.read_version.outputs.version}}
100-
# name: v${{ steps.read_version.outputs.version}}
101-
# body_path: RELEASE_NOTES.md
102-
# artifacts: "code.editor.x86.fpk,code.editor.arm.fpk"
103-
# token: ${{ secrets.GITHUB_TOKEN }}
96+
- name: Release
97+
uses: ncipollo/release-action@v1.20.0
98+
with:
99+
tag: v${{ steps.read_version.outputs.version}}
100+
name: v${{ steps.read_version.outputs.version}}
101+
bodyFile: RELEASE_NOTES.md
102+
artifacts: "code.editor.x86.fpk,code.editor.arm.fpk"
103+
token: ${{ secrets.GITHUB_TOKEN }}
104104

105105
# 查看所有文件
106106
- name: Files

0 commit comments

Comments
 (0)