From 4d4a466585d9a55441f708fab540ecb92ae5523f Mon Sep 17 00:00:00 2001 From: Madison Swain-Bowden Date: Fri, 8 Apr 2022 12:08:24 -0700 Subject: [PATCH] Singularize event --- .github/workflows/push_docker_image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push_docker_image.yml b/.github/workflows/push_docker_image.yml index f9e85bffd..53b3193d9 100644 --- a/.github/workflows/push_docker_image.yml +++ b/.github/workflows/push_docker_image.yml @@ -21,18 +21,18 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Download image `${{ github.events.inputs.image }}` + - name: Download image `${{ github.event.inputs.image }}` uses: dawidd6/action-download-artifact@v2 with: workflow: ci_cd.yml workflow_conclusion: success pr: ${{github.event.pull_request.number}} - name: ${{ github.events.inputs.image }} + name: ${{ github.event.inputs.image }} path: /tmp - - name: Load and tag image `${{ github.events.inputs.image }}` + - name: Load and tag image `${{ github.event.inputs.image }}` env: - INPUT_IMAGE: ${{ github.events.inputs.image }} + INPUT_IMAGE: ${{ github.event.inputs.image }} run: | docker load --input /tmp/$INPUT_IMAGE.tar docker tag openverse-$INPUT_IMAGE \