Skip to content

feat: introduce a generic map for per message nack options (#222) #100

feat: introduce a generic map for per message nack options (#222)

feat: introduce a generic map for per message nack options (#222) #100

Workflow file for this run

name: Docker Publish
on:
push:
branches: [ main ]
tags:
- '*'
jobs:
docker_publish:
# run workflow only on numaproj/numaflow-java repository
if: ${{ github.repository }} == "numaproj/numaflow-java"

Check warning on line 12 in .github/workflows/build-push.yaml

View workflow run for this annotation

GitHub Actions / Docker Publish

Workflow syntax warning

.github/workflows/build-push.yaml (Line: 12, Col: 9): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
name: Build, Tag, and Push Image
runs-on: ubuntu-latest
strategy:
matrix:
execution_ids: [
"batch-map-flatmap", "mapt-event-time-filter-function", "flat-map-stream", "map-flatmap",
"even-odd", "simple-sink", "reduce-sum", "reduce-stream-sum",
"map-forward-message", "reduce-counter", "sideinput-example",
"udf-sideinput-example", "source-simple-source", "session-reduce-count", "stream-sorter"
]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Quay.io registry
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.NUMAIO_USERNAME }}
password: ${{ secrets.NUMAIO_PASSWORD }}
- name: Build, tag, and push images
run: ./hack/update_examples.sh --build-push-example ${{ matrix.execution_ids }}