diff --git a/.github/workflows/sycl-containers.yaml b/.github/workflows/sycl-containers.yaml index 950388591b8d2..e72285399f0b0 100644 --- a/.github/workflows/sycl-containers.yaml +++ b/.github/workflows/sycl-containers.yaml @@ -74,6 +74,7 @@ jobs: file: ${{ matrix.file }} username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} + sycl_ci_passwd: ${{ secrets.DOCKER_SUDO_PASSWORD }} tags: | ghcr.io/${{ github.repository }}/${{ matrix.file }}:${{ matrix.tag }}-${{ github.sha }} ghcr.io/${{ github.repository }}/${{ matrix.file }}:${{ matrix.tag }} diff --git a/devops/actions/build_container/action.yml b/devops/actions/build_container/action.yml index 5ff5f3e209bff..8b992b5a2c050 100644 --- a/devops/actions/build_container/action.yml +++ b/devops/actions/build_container/action.yml @@ -21,6 +21,9 @@ inputs: file: description: "Dockerfile" required: true + sycl_ci_passwd: + description: "Password to assign to sycl_ci user within a container" + required: true runs: using: "composite" @@ -41,3 +44,4 @@ runs: file: ${{ github.workspace }}/devops/containers/${{ inputs.file }}.Dockerfile secrets: | github_token=${{ github.token }} + sycl_ci_passwd=${{ inputs.sycl_ci_passwd }}