File tree Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 74
74
file : ${{ matrix.file }}
75
75
username : ${{ github.repository_owner }}
76
76
password : ${{ secrets.GITHUB_TOKEN }}
77
- sycl_passwd : ${{ secrets.DOCKER_SUDO_PASSWORD }}
77
+ sycl_ci_passwd : ${{ secrets.DOCKER_SUDO_PASSWORD }}
78
78
tags : |
79
79
ghcr.io/${{ github.repository }}/${{ matrix.file }}:${{ matrix.tag }}-${{ github.sha }}
80
80
ghcr.io/${{ github.repository }}/${{ matrix.file }}:${{ matrix.tag }}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ inputs:
21
21
file :
22
22
description : " Dockerfile"
23
23
required : true
24
- sycl_passwd :
24
+ sycl_ci_passwd :
25
25
description : " Password to assign to sycl user within a container"
26
26
required : true
27
27
34
34
registry : ghcr.io
35
35
username : ${{ inputs.username }}
36
36
password : ${{ inputs.password }}
37
- sycl_passwd : ${{ inputs.sycl_passwd }}
38
37
- name : Build and Push Container
39
38
40
39
with :
45
44
file : ${{ github.workspace }}/devops/containers/${{ inputs.file }}.Dockerfile
46
45
secrets : |
47
46
github_token=${{ github.token }}
48
- sycl_passwd =${{ inputs.sycl_passwd }}
47
+ sycl_ci_passwd =${{ inputs.sycl_ci_passwd }}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ COPY scripts/install_build_tools.sh /install.sh
9
9
RUN /install.sh
10
10
11
11
COPY scripts/create-sycl-user.sh /user-setup.sh
12
- RUN --mount=type=secret,id=sycl_passwd /user-setup.sh
12
+ RUN --mount=type=secret,id=sycl_ci_passwd /user-setup.sh
13
13
14
14
COPY actions/cached_checkout /actions/cached_checkout
15
15
COPY actions/cleanup /actions/cleanup
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN apt update && apt install -yqq rocm-dev && \
31
31
rm -rf /var/lib/apt/lists/*
32
32
33
33
COPY scripts/create-sycl-user.sh /user-setup.sh
34
- RUN --mount=type=secret,id=sycl_passwd /user-setup.sh
34
+ RUN --mount=type=secret,id=sycl_ci_passwd /user-setup.sh
35
35
36
36
COPY scripts/docker_entrypoint.sh /docker_entrypoint.sh
37
37
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ COPY scripts/install_build_tools.sh /install.sh
9
9
RUN /install.sh
10
10
11
11
COPY scripts/create-sycl-user.sh /user-setup.sh
12
- RUN --mount=type=secret,id=sycl_passwd /user-setup.sh
12
+ RUN --mount=type=secret,id=sycl_ci_passwd /user-setup.sh
13
13
14
14
COPY actions/cached_checkout /actions/cached_checkout
15
15
COPY actions/cleanup /actions/cleanup
You can’t perform that action at this time.
0 commit comments