Skip to content

Commit 73165b9

Browse files
committed
Fix artifact permissions
Passing the binary artifacts through the GH artifact zip files strips their permissions; we need to make them executable before building the final image. Signed-off-by: Brad Davidson <[email protected]>
1 parent 320cb31 commit 73165b9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/release.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ jobs:
130130
pattern: artifacts-*
131131
merge-multiple: true
132132

133+
- name: Fix artifact permissions
134+
run: chmod 0755 dist/artifacts/system-upgrade-controller-*
135+
133136
- name: Build container image
134137
uses: docker/build-push-action@v6
135138
with:

0 commit comments

Comments
 (0)