From 02409a24c5d1c701e63099a99526c08d3e8407a0 Mon Sep 17 00:00:00 2001 From: icurfer Date: Wed, 14 Jan 2026 09:47:38 +0900 Subject: [PATCH] v0.0.4 | Fix CI version parsing issue - Replace read-file-action with shell command to properly trim newlines - Bump version to v0.0.4 Co-Authored-By: Claude Opus 4.5 --- .github/workflows/build.yaml | 4 +--- version | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b940a25..ea839aa 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,9 +17,7 @@ jobs: - name: Retrieve version id: img-ver - uses: juliangruber/read-file-action@v1 - with: - path: ./version + run: echo "content=$(cat ./version | tr -d '\n')" >> $GITHUB_OUTPUT - name: Install Docker run: | diff --git a/version b/version index f9cece5..a92e827 100644 --- a/version +++ b/version @@ -1 +1 @@ -v0.0.3 +v0.0.4 \ No newline at end of file