Skip to content

Commit 4d28c77

Browse files
committed
Properly use new secret in build-container action
1 parent 1ff5dd4 commit 4d28c77

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/sycl-containers.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ jobs:
7474
file: ${{ matrix.file }}
7575
username: ${{ github.repository_owner }}
7676
password: ${{ secrets.GITHUB_TOKEN }}
77+
sycl_passwd: ${{ secrets.sycl_passwd }}
7778
tags: |
7879
ghcr.io/${{ github.repository }}/${{ matrix.file }}:${{ matrix.tag }}-${{ github.sha }}
7980
ghcr.io/${{ github.repository }}/${{ matrix.file }}:${{ matrix.tag }}

devops/actions/build_container/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ runs:
3131
registry: ghcr.io
3232
username: ${{ inputs.username }}
3333
password: ${{ inputs.password }}
34+
sycl_passwd: ${{ inputs.sycl_passwd }}
3435
- name: Build and Push Container
3536
uses: docker/[email protected]
3637
with:
@@ -41,4 +42,4 @@ runs:
4142
file: ${{ github.workspace }}/devops/containers/${{ inputs.file }}.Dockerfile
4243
secrets: |
4344
github_token=${{ github.token }}
44-
sycl_passwd=${{ secrets.sycl_passwd }}
45+
sycl_passwd=${{ sycl_passwd }}

0 commit comments

Comments
 (0)