Skip to content

Commit 2b3e889

Browse files
committed
Github actions don't support YAML anchors
actions/runner#1182
1 parent 74fd1c8 commit 2b3e889

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@ name: "release"
22

33
on:
44
workflow_dispatch:
5-
inputs: &inputs
5+
inputs:
66
tag:
77
description: "Tag to release"
88
type: string
99
required: true
1010

1111
workflow_call:
12-
inputs: *inputs
12+
inputs:
13+
tag:
14+
description: "Tag to release"
15+
type: string
16+
required: true
1317
secrets:
1418
DOCKER_USERNAME:
1519
required: true

0 commit comments

Comments
 (0)