Skip to content

Commit 0450c10

Browse files
committed
Fix release process
Signed-off-by: Marvin Froeder <velo.br@gmail.com>
1 parent c3efd1f commit 0450c10

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/docker-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
- name: Run Maven Build
4444
if: github.event_name == 'release' && github.event.action == 'created'
4545
run: |
46-
mvn versions:set -DnewVersion=${{ env.VERSION }}
47-
mvn clean install -DskipTests=true
46+
mvn -B versions:set -DnewVersion=${{ env.VERSION }}
47+
mvn -B clean install -DskipTests=true
4848
4949
- name: Build Docker image
5050
working-directory: flink-dockerfile-example
@@ -68,3 +68,4 @@ jobs:
6868
asset_content_type: application/java-archive
6969
env:
7070
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71+
continue-on-error: true

0 commit comments

Comments
 (0)