Skip to content

Commit e41ce80

Browse files
committed
GH Action secrets
1 parent a5f0e2d commit e41ce80

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/release.yml

+9-7
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ env:
2828
GRADLE_OPTS: "-Dorg.gradle.daemon=true"
2929

3030
jobs:
31-
# check:
32-
# uses: ./.github/workflows/check.yml
31+
check:
32+
uses: ./.github/workflows/check.yml
3333

3434
resolve-version:
3535
uses: ./.github/workflows/resolve-version.yml
36-
# needs: [ check ]
36+
needs: [ check ]
3737
with:
3838
desired-version: ${{ github.event.release.tag_name || github.event.inputs.version }}
3939

40-
build:
40+
build-dokka:
4141
name: Build Dokka
4242
needs:
43-
# - check
43+
- check
4444
- resolve-version
4545
runs-on: ubuntu-latest
4646
env:
@@ -79,7 +79,7 @@ jobs:
7979
name: Release to ${{ matrix.repository.name }} on ${{ matrix.os.runner }}
8080
runs-on: ${{ matrix.os.runner }}
8181
needs:
82-
# - check
82+
- check
8383
- resolve-version
8484
defaults:
8585
run:
@@ -152,7 +152,9 @@ jobs:
152152

153153
release-Dokka:
154154
runs-on: ubuntu-latest
155-
needs: [ build, resolve-version ]
155+
needs:
156+
- build-dokka
157+
- resolve-version
156158
if: ${{ github.event.inputs.skipPages != 'y' && needs.resolve-version.outputs.snapshot == 'false' }}
157159
env:
158160
VERSION: ${{ needs.resolve-version.outputs.version }}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gh.owner.organization.url=http://www.reduxkotlin.org
2121
#======================================= Project ========================================
2222
group=org.reduxkotlin
2323
description=Compose Multiplatform integration for Redux-Kotlin
24-
version=0.1.1-SNAPSHOT
24+
version=0.1.0-SNAPSHOT
2525
#======================================== Build =========================================
2626
# linux | macos | windows
2727
project.mainOS=linux

0 commit comments

Comments
 (0)