Skip to content

Commit 26a0942

Browse files
committed
ci: fix output
1 parent 66b905a commit 26a0942

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/version/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
outputs:
1313
version:
1414
description: "the build version"
15-
value: ${{ steps.extract-version.outputs.build-version }}
15+
value: ${{ steps.extract-version.outputs.version }}
1616
snapshot:
1717
description: "if it is a snapshot version"
1818
value: ${{ steps.extract-version.outputs.snapshot }}
@@ -45,7 +45,7 @@ runs:
4545
snapshot="false"
4646
fi
4747
48-
echo "version=${version}" >> "$GITHUB_OUTPUT"
49-
echo "snapshot=${snapshot}" >> "$GITHUB_OUTPUT"
48+
echo "version=$version" >> "$GITHUB_OUTPUT"
49+
echo "snapshot=$snapshot" >> "$GITHUB_OUTPUT"
5050
5151
cat "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)