diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-11-02 11:02:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 04:02:04 -0600 |
commit | 3f3048e1571d92c1df36c29263100e647f48303c (patch) | |
tree | d455cc6197947af98eaf037f7e21a2386ed934c8 /.github | |
parent | 85bdf4f74e54736e4669c274415a80dc75922496 (diff) | |
download | spack-3f3048e1571d92c1df36c29263100e647f48303c.tar.gz spack-3f3048e1571d92c1df36c29263100e647f48303c.tar.bz2 spack-3f3048e1571d92c1df36c29263100e647f48303c.tar.xz spack-3f3048e1571d92c1df36c29263100e647f48303c.zip |
Fix GitHub Action's container build (#27143)
#26538 introduced a typo that causes the Docker image
build to fail.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-containers.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index 6275348227..b98be2421c 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -1,4 +1,5 @@ name: Containers + on: # This Workflow can be triggered manually workflow_dispatch: @@ -59,7 +60,7 @@ jobs: fi - name: Set up QEMU - uses: docker/setup-qemu-action27d0a4f181a40b142cce983c5393082c365d1480 # @v1 + uses: docker/setup-qemu-action@27d0a4f181a40b142cce983c5393082c365d1480 # @v1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@94ab11c41e45d028884a99163086648e898eed25 # @v1 |