File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 3
3
push :
4
4
tags :
5
5
- v[0-9]+.[0-9]+.[0-9]+
6
- branches :
7
- - fix-release-ci
8
-
9
6
jobs :
10
7
draft_release :
11
8
name : Create Draft GitHub Release
20
17
- name : Set tag name
21
18
id : tag
22
19
run : |
23
- echo "tag=v0.4.5" >> $GITHUB_OUTPUT
20
+ tag=$(basename "${{ github.ref }}")
21
+ echo "tag=$tag" >> $GITHUB_OUTPUT
24
22
- name : Create Release
25
- if : false
26
23
env :
27
24
GH_TOKEN : ${{ github.token }}
28
25
GH_REPO : ${{ github.repository }}
63
60
64
61
libs_android :
65
62
name : Building Android libraries
66
- if : false
67
63
runs-on : ubuntu-latest
68
64
steps :
69
65
- uses : actions/checkout@v4
77
73
78
74
libs_wasm :
79
75
name : Basic WASM build
80
- if : false
81
76
runs-on : ubuntu-latest
82
77
steps :
83
78
- uses : actions/checkout@v4
102
97
contents : read
103
98
packages : write
104
99
name : Publish Android
105
- if : false
106
100
needs : [ draft_release, libs_android ]
107
101
runs-on : ubuntu-latest
108
102
steps :
@@ -211,7 +205,6 @@ jobs:
211
205
gh release upload "${{ needs.draft_release.outputs.tag }}" *.so
212
206
213
207
publish_wasm :
214
- if : false
215
208
name : Publish WASM builds
216
209
needs : [ draft_release, libs_wasm ]
217
210
runs-on : ubuntu-latest
@@ -253,8 +246,10 @@ jobs:
253
246
runs-on : macos-latest
254
247
needs :
255
248
- draft_release
249
+ - publish_android
256
250
- publish_ios_pod_and_spm_package
257
251
- publish_desktop
252
+ - publish_wasm
258
253
steps :
259
254
- name : Create issue
260
255
run : |
You can’t perform that action at this time.
0 commit comments