Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Singularize event
Browse files Browse the repository at this point in the history
  • Loading branch information
AetherUnbound committed Apr 8, 2022
1 parent 22dcce2 commit 4d4a466
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/push_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 4d4a466

Please sign in to comment.