We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d822f85 commit 99f9fa3Copy full SHA for 99f9fa3
.github/workflows/build-and-publish-docker-container.yml
@@ -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