Skip to content

Commit 872da45

Browse files
committed
fix: use conditional
1 parent 83bd499 commit 872da45

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/promote.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
next-version: ${{ inputs.next-version }}
8181

8282
- name: set version in file
83-
uses: krestomatio/kio-github-actions/[email protected].4
83+
uses: krestomatio/kio-github-actions/[email protected].5
8484
with:
8585
version: ${{ steps.release_version.outputs.version }}
8686
version-makefile: ${{ inputs.version-makefile }}

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION ?= 0.0.4
1+
VERSION ?= 0.0.5
22
ifneq (,$(findstring xterm,${TERM}))
33
RED := $(shell tput -Txterm setaf 1)
44
GREEN := $(shell tput -Txterm setaf 2)

version-file/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ runs:
6161
fi
6262
6363
- name: run make target
64-
if: ${{ inputs.make-target != "" }}
64+
if: inputs.make-target != ''
6565
shell: bash
6666
run: |
6767
echo "Run make target: ${{ inputs.make-target }}"

0 commit comments

Comments
 (0)