We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3efd1f commit 0450c10Copy full SHA for 0450c10
.github/workflows/docker-publish.yml
@@ -43,8 +43,8 @@ jobs:
43
- name: Run Maven Build
44
if: github.event_name == 'release' && github.event.action == 'created'
45
run: |
46
- mvn versions:set -DnewVersion=${{ env.VERSION }}
47
- mvn clean install -DskipTests=true
+ mvn -B versions:set -DnewVersion=${{ env.VERSION }}
+ mvn -B clean install -DskipTests=true
48
49
- name: Build Docker image
50
working-directory: flink-dockerfile-example
@@ -68,3 +68,4 @@ jobs:
68
asset_content_type: application/java-archive
69
env:
70
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
+ continue-on-error: true
0 commit comments