Skip to content

Commit 3778d5e

Browse files
jamescowensclaude
andcommitted
ci: disable Docker buildx record upload to fix Create Release job
docker/build-push-action@v6 uploads internal .dockerbuild record artifacts named after the repository owner. On the gridcoin-community org these match the gridcoin-* glob used by the Create Release download step, causing artifact download failures. Set DOCKER_BUILD_RECORD_UPLOAD to false on the docker-publish job to prevent these artifacts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7b796c2 commit 3778d5e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/cmake_production.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,11 @@ jobs:
755755
needs: [amd64-native-build, arm64-cross-build]
756756
runs-on: ubuntu-latest
757757
if: startsWith(github.ref, 'refs/tags/')
758+
env:
759+
# Prevent docker/build-push-action from uploading .dockerbuild
760+
# record artifacts that collide with the gridcoin-* glob in the
761+
# Create Release download step.
762+
DOCKER_BUILD_RECORD_UPLOAD: false
758763
permissions:
759764
contents: read
760765
packages: write

0 commit comments

Comments
 (0)