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