Skip to content

Commit

Permalink
Fix build.yml to use correct variable
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Aug 12, 2024
1 parent c895ff5 commit afedfa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
id: vars
run: |
if [[ -z "${{ github.event.inputs.denops_version }}" ]]; then
echo 'DENOPS_VERSION=main' >> $GITHUB_OUTPUT
DENOPS_VERSION=main
else
echo 'DENOPS_VERSION=${{ github.event.inputs.denops_version }}' >> $GITHUB_OUTPUT
DENOPS_VERSION=${{ github.event.inputs.denops_version }}
fi
if [[ $DENOPS_VERSION == v* ]]; then
echo "DOCKER_TAG=$DENOPS_VERSION" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit afedfa9

Please sign in to comment.