From 2ab05e13b258c2f89761cd2dc29f9ac8a15b1e75 Mon Sep 17 00:00:00 2001 From: gonzo Date: Sun, 26 Nov 2023 15:44:36 +0100 Subject: [PATCH] add new workflows Changes to be committed: new file: .github/workflows/on-push-n-pr.yml --- .github/workflows/on-push-n-pr.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/on-push-n-pr.yml diff --git a/.github/workflows/on-push-n-pr.yml b/.github/workflows/on-push-n-pr.yml new file mode 100644 index 0000000..7a6a3f9 --- /dev/null +++ b/.github/workflows/on-push-n-pr.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + workflow_dispatch: + push: + branches: ['*', '!update-*-to-*', '!IBC-update*'] + pull_request: + branches: ['master', '!update-*-to-*', '!IBC-update*'] + +jobs: + build: + name: Build image + strategy: + matrix: + channel: ['stable', 'latest'] + uses: gnzsnz/ib-gateway-docker/.github/workflows/build.yml@master + with: + channel: ${{ matrix.channel }}