Skip to content

Commit 9aa3992

Browse files
committed
Fix publication job, update released version info
1 parent 2b9bd28 commit 9aa3992

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- name: Check if snapshot version
2525
run: echo "IS_SNAPSHOT=$(sbt --no-colors -Dsbt.supershell=false 'show isSnapshot' | grep 'info' | tail -1 | awk '{print $2}')" >> $GITHUB_ENV
2626
- name: Build and publish release version to maven
27-
if: ${{ env.IS_SNAPSHOT == 'true' }}
27+
if: ${{ env.IS_SNAPSHOT == 'false' }}
2828
run: sbt "+clean; +publishSigned; sonatypeBundleRelease"
2929
- name: Build and publish snapshot version to maven
30-
if: ${{ env.IS_SNAPSHOT == 'false' }}
30+
if: ${{ env.IS_SNAPSHOT == 'true' }}
3131
run: sbt "+clean; +publishSigned"
3232
- name: Setup buildx builder
3333
uses: docker/setup-buildx-action@v3

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ For more refer to <https://issues.apache.org/jira/browse/FLINK-13414>.
1212
```bash
1313
rm $FLINK_HOME/lib/flink-scala*.jar
1414

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
1616
```
1717

1818
## Using as a lib (probably only sufficient when child-first classloading is enabled on flink)
1919
```scala
20-
libraryDependencies += "pl.touk" %% "flink-scala" % "1.1.3"
20+
libraryDependencies += "pl.touk" %% "flink-scala" % "1.1.4"
2121
```
2222

2323
## Prebuild flink images
2424
* we provide prebuild flink docker images for scala 2.12 and 2.13 on [Docker Hub](https://hub.docker.com/r/touk/flink)
2525

26-
## Publishing (actually on manual github action)
26+
## Publishing (run on manual GitHub action)
2727
```
2828
sbt "+publishSigned; sonatypeBundleRelease"
2929
```

0 commit comments

Comments
 (0)