From 9885d7764023559b5c6d934501a8dba765acd15e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Mon, 10 Jun 2024 12:30:31 +0200 Subject: [PATCH] Backport CI to r1 (#5) * Add a github-actions-based CI (#1) (cherry picked from commit 2fa668c8bdf37b0411c4cf6672eb2f024e20bbf2) * [CI] Fix setting image-name (#3) (cherry picked from commit 2c0aaa18da18c4fff27c91b44176df78bced0194) --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..7ad55c7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI +on: + push: + branches: + - main + - r[1-9] + pull_request: + branches: + - main + - r[1-9] +jobs: + build-and-push-activemq-broker: + name: Build and push activemq-broker + uses: eu-nebulous/github-actions/.github/workflows/build-and-push-container-image.yml@main + with: + context: docker + image-name: activemq-broker + secrets: inherit