File tree 7 files changed +14
-25
lines changed
7 files changed +14
-25
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches-ignore :
6
6
- main
7
- - dev
8
7
- kotlin-eap/*
9
8
10
9
jobs :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
11
12
12
publish :
13
13
needs : [ checks ]
14
- uses : ./.github/workflows/publish-website.yml
15
- permissions :
16
- contents : read
17
- pages : write
18
- id-token : write
14
+ uses : ./.github/workflows/publish-snapshot.yml
15
+ secrets : inherit
Original file line number Diff line number Diff line change 12
12
needs : [ checks ]
13
13
uses : ./.github/workflows/publish-release.yml
14
14
secrets : inherit
15
+
16
+ publish-website :
17
+ needs : [ publish ]
18
+ uses : ./.github/workflows/publish-website.yml
19
+ permissions :
20
+ contents : read
21
+ pages : write
22
+ id-token : write
Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ jobs:
16
16
cache-disabled : true
17
17
18
18
- name : Publish to Maven Local (prepare packages)
19
- run : ./gradlew publishToMavenLocal --no-configuration-cache
19
+ run : ./gradlew publishToMavenLocal -Pversion=0.3.0-SNAPSHOT - -no-configuration-cache
20
20
env :
21
21
ORG_GRADLE_PROJECT_signingKey : ${{secrets.signingKey}}
22
22
ORG_GRADLE_PROJECT_signingPassword : ${{secrets.signingPassword}}
23
23
ORG_GRADLE_PROJECT_sonatypeUsername : ${{secrets.sonatypeUsername}}
24
24
ORG_GRADLE_PROJECT_sonatypePassword : ${{secrets.sonatypePassword}}
25
25
26
26
- name : Publish snapshot to Sonatype
27
- run : ./gradlew publishAllPublicationsToSnapshotRepository --no-configuration-cache
27
+ run : ./gradlew publishAllPublicationsToSnapshotRepository -Pversion=0.3.0-SNAPSHOT - -no-configuration-cache
28
28
env :
29
29
ORG_GRADLE_PROJECT_signingKey : ${{secrets.signingKey}}
30
30
ORG_GRADLE_PROJECT_signingPassword : ${{secrets.signingPassword}}
Original file line number Diff line number Diff line change 18
18
- uses : actions/checkout@v4
19
19
- uses : ./.github/actions/setup-gradle
20
20
with :
21
- cache-read-only : ${{ github.ref_name != 'dev ' }}
21
+ cache-read-only : ${{ github.ref_name != 'main ' }}
22
22
23
23
- if : matrix.os == 'windows-latest'
24
24
uses : msys2/setup-msys2@v2
Original file line number Diff line number Diff line change 3
3
#
4
4
5
5
group =dev.whyoleg.cryptography
6
- version =0.3.0-SNAPSHOT
6
+ version =0.3.0
7
7
# Kotlin
8
8
kotlin.mpp.import.enableKgpDependencyResolution =true
9
9
kotlin.mpp.enableCInteropCommonization =true
You can’t perform that action at this time.
0 commit comments