File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ jobs:
24
24
- name : Check if snapshot version
25
25
run : echo "IS_SNAPSHOT=$(sbt --no-colors -Dsbt.supershell=false 'show isSnapshot' | grep 'info' | tail -1 | awk '{print $2}')" >> $GITHUB_ENV
26
26
- name : Build and publish release version to maven
27
- if : ${{ env.IS_SNAPSHOT == 'true ' }}
27
+ if : ${{ env.IS_SNAPSHOT == 'false ' }}
28
28
run : sbt "+clean; +publishSigned; sonatypeBundleRelease"
29
29
- name : Build and publish snapshot version to maven
30
- if : ${{ env.IS_SNAPSHOT == 'false ' }}
30
+ if : ${{ env.IS_SNAPSHOT == 'true ' }}
31
31
run : sbt "+clean; +publishSigned"
32
32
- name : Setup buildx builder
33
33
uses : docker/setup-buildx-action@v3
Original file line number Diff line number Diff line change @@ -12,18 +12,18 @@ For more refer to <https://issues.apache.org/jira/browse/FLINK-13414>.
12
12
``` bash
13
13
rm $FLINK_HOME /lib/flink-scala* .jar
14
14
15
- wget https://repo1.maven.org/maven2/pl/touk/flink-scala_2.12/1.1.3 /flink-scala_2.12-1.1.3 -assembly.jar -O $FLINK_HOME /lib/flink-scala_2.12-1.1.3 -assembly.jar
15
+ wget https://repo1.maven.org/maven2/pl/touk/flink-scala_2.12/1.1.4 /flink-scala_2.12-1.1.4 -assembly.jar -O $FLINK_HOME /lib/flink-scala_2.12-1.1.4 -assembly.jar
16
16
```
17
17
18
18
## Using as a lib (probably only sufficient when child-first classloading is enabled on flink)
19
19
``` scala
20
- libraryDependencies += " pl.touk" %% " flink-scala" % " 1.1.3 "
20
+ libraryDependencies += " pl.touk" %% " flink-scala" % " 1.1.4 "
21
21
```
22
22
23
23
## Prebuild flink images
24
24
* we provide prebuild flink docker images for scala 2.12 and 2.13 on [ Docker Hub] ( https://hub.docker.com/r/touk/flink )
25
25
26
- ## Publishing (actually on manual github action)
26
+ ## Publishing (run on manual GitHub action)
27
27
```
28
28
sbt "+publishSigned; sonatypeBundleRelease"
29
29
```
You can’t perform that action at this time.
0 commit comments