Skip to content

Commit 92eecf9

Browse files
author
tuky191
committed
fix release.yml
1 parent a3d9313 commit 92eecf9

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Release
33
on:
44
push:
55
tags:
6-
- 'v[0-9]+.[0-9]+.[0-9]+' # Push events to matching v*, i.e. v1.0, v20.15.10
7-
- 'v[0-9]+.[0-9]+.[0-9]+-rc*' # Push events to matching v*, i.e. v1.0-rc1, v20.15.10-rc5
6+
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
7+
- "v[0-9]+.[0-9]+.[0-9]+-rc*" # Push events to matching v*, i.e. v1.0-rc1, v20.15.10-rc5
88

99
jobs:
1010
release:
@@ -24,7 +24,7 @@ jobs:
2424
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
strategy:
2626
matrix:
27-
build_type: ['build-release-arm64', 'build-release-amd64']
27+
build_type: ["build-release-arm64", "build-release-amd64"]
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v4
@@ -53,8 +53,4 @@ jobs:
5353
- name: Display checksums
5454
run: cat build/release/checksum.txt
5555
- name: Upload the checksum to release
56-
<<<<<<< HEAD
5756
run: gh release upload ${{github.ref_name}} build/release/checksum.txt --repo ${{github.repository}}
58-
=======
59-
run: gh release upload ${{github.ref_name}} build/release/checksum.txt --repo ${{github.repository}}
60-
>>>>>>> v2.3.0

0 commit comments

Comments
 (0)