From 6ed5c5cf2d560b7f69bbfc6a90e3b71443736d54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Mon, 10 Jun 2024 10:05:19 +0200 Subject: [PATCH 1/2] Add a github-actions-based CI (#1) (cherry picked from commit 2fa668c8bdf37b0411c4cf6672eb2f024e20bbf2) --- .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..2cc279c --- /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 + labels: quay.io/nebulous/activemq-broker + secrets: inherit From e16227b028a007e9aa24a5c10d31dffd58884e14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Mon, 10 Jun 2024 10:20:32 +0200 Subject: [PATCH 2/2] [CI] Fix setting image-name (#3) (cherry picked from commit 2c0aaa18da18c4fff27c91b44176df78bced0194) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2cc279c..7ad55c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,5 +14,5 @@ jobs: uses: eu-nebulous/github-actions/.github/workflows/build-and-push-container-image.yml@main with: context: docker - labels: quay.io/nebulous/activemq-broker + image-name: activemq-broker secrets: inherit