Skip to content

Commit afedfa9

Browse files
committed
Fix build.yml to use correct variable
1 parent c895ff5 commit afedfa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
id: vars
2828
run: |
2929
if [[ -z "${{ github.event.inputs.denops_version }}" ]]; then
30-
echo 'DENOPS_VERSION=main' >> $GITHUB_OUTPUT
30+
DENOPS_VERSION=main
3131
else
32-
echo 'DENOPS_VERSION=${{ github.event.inputs.denops_version }}' >> $GITHUB_OUTPUT
32+
DENOPS_VERSION=${{ github.event.inputs.denops_version }}
3333
fi
3434
if [[ $DENOPS_VERSION == v* ]]; then
3535
echo "DOCKER_TAG=$DENOPS_VERSION" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)