Skip to content

Commit 94c2dc6

Browse files
committed
Set storm base tag from user input
1 parent 75898dd commit 94c2dc6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release_docker.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
description: 'Docker tag (e.g. 1.1.0 or stable)'
1212
required: true
1313
default: 'x.y.z'
14+
stormTag:
15+
description: 'Docker tag of Storm base image (e.g. 1.1.0 or stable)'
16+
required: true
17+
default: 'x.y.z'
1418

1519
env:
1620
IMAGE: movesrwth/stormpy
@@ -25,13 +29,13 @@ jobs:
2529
matrix:
2630
image:
2731
- {tag: "${{ github.event.inputs.tag }}-debug",
28-
baseImg: "movesrwth/storm:${{ github.event.inputs.tag }}-debug",
32+
baseImg: "movesrwth/storm:${{ github.event.inputs.stormTag }}-debug",
2933
file: "Dockerfile",
3034
buildType: "Debug",
3135
setupArgs: "--debug"
3236
}
3337
- {tag: "${{ github.event.inputs.tag }}",
34-
baseImg: "movesrwth/storm:${{ github.event.inputs.tag }}",
38+
baseImg: "movesrwth/storm:${{ github.event.inputs.stormTag }}",
3539
file: "Dockerfile",
3640
buildType: "Release",
3741
setupArgs: ""

0 commit comments

Comments
 (0)