Skip to content

Commit

Permalink
add new workflows
Browse files Browse the repository at this point in the history
Changes to be committed:
	new file:   .github/workflows/on-push-n-pr.yml
  • Loading branch information
gnzsnz committed Nov 26, 2023
1 parent aad1833 commit 2ab05e1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/on-push-n-pr.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 2ab05e1

Please sign in to comment.