Skip to content

Commit 2baee09

Browse files
committed
Copy release artifacts differently due to deadlock when using outputs
See moby/buildkit#2950
1 parent 37f6cbf commit 2baee09

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/create-release.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,16 @@ jobs:
1414
- name: Build release packages
1515
uses: docker/build-push-action@v6
1616
with:
17-
outputs: |
18-
type=local,dest=/tmp/artifacts
17+
tags: |
18+
util_caching_release
1919
push: false
2020
target: release
2121

22+
- name: Copy release packages
23+
run: |
24+
mkdir -p /tmp/artifacts/
25+
docker run --rm -v /tmp/artifacts:/tmp/artifacts util_caching_release cp -r /release /tmp/artifacts/
26+
2227
- name: Create Release
2328
uses: ncipollo/release-action@v1
2429
with:

0 commit comments

Comments
 (0)