From bf4b7f6d26afa9272abfc3dc8d1102a8efd73b79 Mon Sep 17 00:00:00 2001 From: rultor Date: Mon, 7 Oct 2024 07:00:24 +0000 Subject: [PATCH] version set to 0.14.0 --- Dockerfile | 2 +- action.yml | 2 +- entry.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f5c0b72..42c3cd3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ FROM ubuntu:24.04 LABEL "repository"="https://github.com/yegor256/latexmk-action" LABEL "maintainer"="Yegor Bugayenko" -LABEL "version"="0.0.0" +LABEL "version"="0.14.0" WORKDIR /action diff --git a/action.yml b/action.yml index 2111408..ed5c807 100644 --- a/action.yml +++ b/action.yml @@ -27,7 +27,7 @@ branding: color: orange runs: using: 'docker' - image: 'docker://yegor256/latexmk-action:latest' + image: 'docker://yegor256/latexmk-action:0.14.0' inputs: path: description: 'The directory with Makefile' diff --git a/entry.sh b/entry.sh index d73ad61..d94bc7d 100755 --- a/entry.sh +++ b/entry.sh @@ -56,7 +56,7 @@ fi cd "${INPUT_PATH-.}" || exit 1 ls -al -echo "latexmk-action 0.0.0" +echo "latexmk-action 0.14.0" read -r -a opts <<< "${INPUT_OPTS}" ${INPUT_CMD} "${opts[@]}"