From 8b0fa1d4847657288504fccfd1115a0e4e31b808 Mon Sep 17 00:00:00 2001 From: Matthew Pomes Date: Tue, 7 Jul 2026 23:21:27 -0500 Subject: [PATCH] Use local git checkout so compiled artifacts are available --- .gitea/workflows/ci.yaml | 4 +--- Dockerfile | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1d476a5..2775f66 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -29,12 +29,10 @@ jobs: registry: gitea.loadingm.xyz username: "the10thwiz" password: ${{ secrets.PACKAGE_TOKEN }} - - run: ls .; ls ./target; ls ./target/x86_64-unknown-linux-musl; ls ./target/x86_64-unknown-linux-musl/release/ - name: Build and push uses: docker/build-push-action@v6 with: + context: . push: true file: 'Dockerfile' tags: gitea.loadingm.xyz/the10thwiz/gpodder:latest - - diff --git a/Dockerfile b/Dockerfile index b19fb23..5204a79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM alpine + WORKDIR / COPY ./target/x86_64-unknown-linux-musl/release/gpodder-rs /gpodder-rs