File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 28
28
GRADLE_OPTS : " -Dorg.gradle.daemon=true"
29
29
30
30
jobs :
31
- # check:
32
- # uses: ./.github/workflows/check.yml
31
+ check :
32
+ uses : ./.github/workflows/check.yml
33
33
34
34
resolve-version :
35
35
uses : ./.github/workflows/resolve-version.yml
36
- # needs: [ check ]
36
+ needs : [ check ]
37
37
with :
38
38
desired-version : ${{ github.event.release.tag_name || github.event.inputs.version }}
39
39
40
- build :
40
+ build-dokka :
41
41
name : Build Dokka
42
42
needs :
43
- # - check
43
+ - check
44
44
- resolve-version
45
45
runs-on : ubuntu-latest
46
46
env :
79
79
name : Release to ${{ matrix.repository.name }} on ${{ matrix.os.runner }}
80
80
runs-on : ${{ matrix.os.runner }}
81
81
needs :
82
- # - check
82
+ - check
83
83
- resolve-version
84
84
defaults :
85
85
run :
@@ -152,7 +152,9 @@ jobs:
152
152
153
153
release-Dokka :
154
154
runs-on : ubuntu-latest
155
- needs : [ build, resolve-version ]
155
+ needs :
156
+ - build-dokka
157
+ - resolve-version
156
158
if : ${{ github.event.inputs.skipPages != 'y' && needs.resolve-version.outputs.snapshot == 'false' }}
157
159
env :
158
160
VERSION : ${{ needs.resolve-version.outputs.version }}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ gh.owner.organization.url=http://www.reduxkotlin.org
21
21
# ======================================= Project ========================================
22
22
group =org.reduxkotlin
23
23
description =Compose Multiplatform integration for Redux-Kotlin
24
- version =0.1.1 -SNAPSHOT
24
+ version =0.1.0 -SNAPSHOT
25
25
# ======================================== Build =========================================
26
26
# linux | macos | windows
27
27
project.mainOS =linux
You can’t perform that action at this time.
0 commit comments