Skip to content

Commit cd6fb36

Browse files
authored
Merge pull request #107 from cybozu-go/ceph/Dockerfile/add-COPYING-to-packages
add COPYING* to packages.zip
2 parents 87ac222 + 88123f7 commit cd6fb36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ceph-export-diff-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
- run: make -C ceph build
2020
- run: |
2121
VERSION=${GITHUB_REF#refs/tags/}
22-
zip -j packages.zip ceph/packages/*.deb
22+
zip -j packages.zip ceph/packages/*.deb ceph/packages/COPYING*
2323
gh release create ${VERSION} -t "Release ${VERSION}"
2424
gh release upload ${VERSION} packages.zip

ceph/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ ENV WORKSPACE=/workspace
5858
ENV PACKAGES=/packages
5959

6060
# Since the package file is extracted outside the docker image at the end, keep the files.
61-
COPY --from=build-ceph ${WORKSPACE}/*.deb ${PACKAGES}/
61+
COPY --from=build-ceph ${WORKSPACE}/*.deb ${WORKSPACE}/COPYING* ${PACKAGES}/
6262

6363
WORKDIR ${WORKSPACE}
6464
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/usr/local/bin/kubectl"

0 commit comments

Comments
 (0)