diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-10-06 01:12:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 23:12:25 +0000 |
commit | d7fc17d5dbfa02cb1b83fb3ebb4361baee278f39 (patch) | |
tree | a460f3072c6644f787fbe41ddd32cbd8c560a3b6 /.github | |
parent | cc6508ec0915de0b21d14d2b2c7e8c0757d2afc0 (diff) | |
download | spack-d7fc17d5dbfa02cb1b83fb3ebb4361baee278f39.tar.gz spack-d7fc17d5dbfa02cb1b83fb3ebb4361baee278f39.tar.bz2 spack-d7fc17d5dbfa02cb1b83fb3ebb4361baee278f39.tar.xz spack-d7fc17d5dbfa02cb1b83fb3ebb4361baee278f39.zip |
Set explicitly write permission for packages (#26539)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-containers.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index 908c4ebdf2..a2f6230e71 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -17,7 +17,9 @@ on: jobs: deploy-images: - runs-on: ubuntu-latest + runs-on: ubuntu-latest + permissions: + packages: write strategy: # Even if one container fails to build we still want the others # to continue their builds. |