Skip to content

Commit 99f9fa3

Browse files
committed
Add GHA that builds a container based on an already created release
1 parent d822f85 commit 99f9fa3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: build-and-publish-docker
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
inputs:
6+
tag:
7+
description: 'The tag of the release that should be dockerized'
8+
required: true
9+
10+
jobs:
11+
include-docker-build:
12+
uses: openconext/openconext-githubactions/.github/workflows/build-push-docker-image.yml@feature/checkout_tag
13+
with:
14+
component_name: "OpenConext-engineblock"
15+
tag: "${{ inputs.tag }}"

0 commit comments

Comments
 (0)