From 70246f0d97fb0aec09859b4f4db0487138efc8eeb69937b6b7c63b17e466105f Mon Sep 17 00:00:00 2001 From: Kira Date: Tue, 30 Jun 2026 18:55:36 +0200 Subject: [PATCH] more play with build_release action. --- .gitea/workflows/build_release.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build_release.yaml b/.gitea/workflows/build_release.yaml index 2aced00..ee3a11a 100644 --- a/.gitea/workflows/build_release.yaml +++ b/.gitea/workflows/build_release.yaml @@ -41,8 +41,15 @@ jobs: - name: Build with Rust Docker Image run: | - docker run --rm -v "${{ github.workspace }}:/app" -w /app rust:slim-trixie ls -la - docker run --rm -v "${{ github.workspace }}:/app" -w /app rust:slim-trixie cargo build --release + echo "Checking host path: ${{ github.workspace }}" + ls -la "${{ github.workspace }}" + + docker run --rm \ + -v "${{ github.workspace }}:/app:z" \ + -w /app \ + rust:slim-trixie \ + cargo build --release + - name: Upload Artifact uses: actions/upload-artifact@v3