From 6dde94698489dd9addeeead62bde6f58c29190e9 Mon Sep 17 00:00:00 2001 From: icurfer Date: Sun, 19 Apr 2026 01:25:22 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20Install=20Docker=20=EC=8A=A4=ED=85=9D=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0=20+=20version=20bump?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gitea/runner-images:ubuntu-latest 러너 이미지에 Docker가 이미 포함되어 있어 재설치 시도 시 dpkg 충돌 발생. 스텝 제거로 해결. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/build.yaml | 12 ++---------- version | 2 +- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b6825fd..43c3792 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -23,17 +23,9 @@ jobs: - name: checkout source code uses: actions/checkout@v3 - - name: Retrieve version # tag version + - name: Retrieve version id: img-ver - uses: juliangruber/read-file-action@v1 - with: - path: ./version - - - name: Install Docker // Docker 설치 - run: | - curl -fsSL https://get.docker.com -o get-docker.sh - sh get-docker.sh - if: runner.os == 'Linux' + run: echo "content=$(cat ./version | tr -d '\n')" >> $GITHUB_OUTPUT - name: Set up Docker Buildx # uses: https://github.com/docker/setup-buildx-action@v1 diff --git a/version b/version index 71ad83c..6778882 100644 --- a/version +++ b/version @@ -1 +1 @@ -v0.0.13 \ No newline at end of file +v0.0.14 \ No newline at end of file