Fix exception when sending message with EventID attached (#72) #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish Docker dev-release distributions to Github Container Registry ghcr.io | |
on: | |
push: | |
tags: | |
- \d+.\d+.\d+-dev | |
jobs: | |
build: | |
strategy: | |
fail-fast: false # because the OWASP scan that fails and cancels parallel runs | |
matrix: | |
project: | |
- conn-fix | |
- conn-ntg | |
- conn-soup | |
uses: th2-net/.github/.github/workflows/matrix-java-docker.yml@main | |
with: | |
runsOn: ubuntu-20.04 | |
projectName: ${{ matrix.project }} | |
build-target: 'Docker' | |
docker-username: ${{ github.actor }} | |
devRelease: true | |
secrets: | |
docker-password: ${{ secrets.GITHUB_TOKEN }} |