File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 26
26
run : echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${GITHUB_ACTOR,,} --password-stdin
27
27
28
28
- name : Build Image
29
- run : OSS_REGISTRY="ghcr.io/oracle " VERSION="${{ github.ref_name }}" make image
29
+ run : OSS_REGISTRY="ghcr.io/${GITHUB_ACTOR,,} " VERSION="${{ github.ref_name }}" make image
30
30
31
31
- name : Push Image
32
- run : OSS_REGISTRY="ghcr.io/oracle " VERSION="${{ github.ref_name }}" make docker-push-all
32
+ run : OSS_REGISTRY="ghcr.io/${GITHUB_ACTOR,,} " VERSION="${{ github.ref_name }}" make docker-push-all
Original file line number Diff line number Diff line change @@ -37,4 +37,11 @@ RUN yum install -y util-linux \
37
37
&& yum install -y xfsprogs \
38
38
&& yum clean all
39
39
40
+ COPY scripts/encrypt-mount /sbin/encrypt-mount
41
+ COPY scripts/encrypt-umount /sbin/encrypt-umount
42
+ COPY scripts/rpm-host /sbin/rpm-host
43
+ RUN chmod 755 /sbin/encrypt-mount
44
+ RUN chmod 755 /sbin/encrypt-umount
45
+ RUN chmod 755 /sbin/rpm-host
46
+
40
47
COPY --from=0 /go/src/github.com/oracle/oci-cloud-controller-manager/dist/* /usr/local/bin/
Original file line number Diff line number Diff line change @@ -21,4 +21,11 @@ RUN yum install -y util-linux \
21
21
&& yum clean all
22
22
\
23
23
24
+ COPY scripts/encrypt-mount /sbin/encrypt-mount
25
+ COPY scripts/encrypt-umount /sbin/encrypt-umount
26
+ COPY scripts/rpm-host /sbin/rpm-host
27
+ RUN chmod 755 /sbin/encrypt-mount
28
+ RUN chmod 755 /sbin/encrypt-umount
29
+ RUN chmod 755 /sbin/rpm-host
30
+
24
31
COPY --from=0 /go/src/github.com/oracle/oci-cloud-controller-manager/dist/arm/* /usr/local/bin/
You can’t perform that action at this time.
0 commit comments