diff options
author | Alec Scott <alec@bcs.sh> | 2021-08-06 17:25:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-07 00:25:36 +0000 |
commit | cfbefee0facd260975f9ecc7b20404b36ae2a07f (patch) | |
tree | 80b81e0702aab58cd9fb26e56121c1a11ef5cee7 /.github/workflows | |
parent | 98d4a7af24e3e69ee1dabce6f2a9ae94e01f166a (diff) | |
download | spack-cfbefee0facd260975f9ecc7b20404b36ae2a07f.tar.gz spack-cfbefee0facd260975f9ecc7b20404b36ae2a07f.tar.bz2 spack-cfbefee0facd260975f9ecc7b20404b36ae2a07f.tar.xz spack-cfbefee0facd260975f9ecc7b20404b36ae2a07f.zip |
Fix GHCR Username in Container Builder (#25301)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-containers.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index 27ecf591be..e9006b32e8 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -54,7 +54,7 @@ jobs: uses: docker/login-action@v1 with: registry: ghcr.io - username: spack + username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Set up QEMU |